經過10多個小時的研究,我還沒有想出爲什麼這不起作用!我試圖將我的本地主機移動到/ etc/nginx/sites-enabled/default中啓用了站點的文件夾中。Nginx沒有在啓用網站的網站中選取網站?
它是來自sites-available文件夾的符號鏈接。當採用下面的配置,我碰到一個 「無法連接」 使用本地主機:8080爲我的地址
nginx.conf(/usr/local/nginx/conf/nginx.conf):
user www-data;
worker_processes 2;
events {
worker_connections 1024;
}
http {
include mime.types;
default_type application/octet-stream;
sendfile on;
keepalive_timeout 65;
include /etc/nginx/sites-enabled/*;
}
網站 - 可選(在/ etc/nginx的/網站可用/默認):
server {
listen 8080;
root /home/myusername/myown/customdirectory;
index index.php index.html index.htm;
server_name localhost;
location/{
try_files $uri $uri/ /index.html;
}
location /doc/ {
alias /usr/share/doc/;
autoindex on;
allow 127.0.0.1;
allow ::1;
deny all;
}
error_page 404 /404.html;
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root /usr/share/nginx/www;
}
location ~ \.php$ {
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_index index.php;
include fastcgi_params;
}
location ~ /\.ht {
deny all;
}
}
我能得到這個工作,如果我把從可用到nginx.conf網站的相關信息,我只是想不通爲什麼它不以這種方式工作?
謝謝!
你確定符號鏈接不破? ls -l /etc/nginx/ sites-enabled/ –
是的,我沒有仔細檢查符號鏈接,仍然沒有運氣 – Discorick
另請參閱:http://stackoverflow.com/questions/17413526/nginx-missing-sites-available-directory – 2013-12-18 17:54:09