经过十多个小时的研究,我还没有弄清为什么这行不通!我正在尝试将本地主机移至位于/ etc / nginx / sites-enabled / default中的启用了站点的文件夹。
它是站点可用文件夹中的符号链接。使用以下配置时,使用本地主机: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上,则可以正常工作,我只是想不通为什么它不能以这种方式工作?
谢谢!
2
您确定符号链接没有损坏吗?ls -l / etc / nginx / sites-enabled /
—
catalin.costache 2012年
是的,我仔细检查了符号链接,仍然没有运气
—
Discorick 2012年