|
楼主 |
发表于 2016-10-9 18:30:15
|
显示全部楼层
我的sites-available里的东西是这样的!!!
本帖最后由 helloCIwx 于 2016-10-9 18:33 编辑
我的server是这样的在网上并没有找到类似server { listen 81;
listen [::]:81;
root /var/www/html/citest;
index index.php index.html index.htm index.nginx-debian.html;
server_name citest.dev;
location / {
try_files $uri $uri/ /index.php;
}
location ~ \.php$ {
include snippets/fastcgi-php.conf;
fastcgi_pass 127.0.0.1:9000;
}
location ~ /\.ht {
deny all;
}
}
|
|