我已经用 php5-fpm 和 mysql 安装了 nginx,这是我的配置
root /var/www;
index index.html index.htm index.php
fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_index index.php;
include fastcgi_params;
它成功启动并且正在下载文件而不是执行 . 我知道这是 php-fpm 引擎的问题。
但是现在服务器停止并响应加载页面问题而不是第一次出现的欢迎使用 nginx 在终端我看到
"user" directive makes sense only if the master process runs with super-user privileges,
nginx: [emerg] "fastcgi_pass" directive is not allowed here in/etc/nginx/sites-enabled/default~:68
所以请帮助解决这个问题。