2

我已经用 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

所以请帮助解决这个问题。

4

1 回答 1

1

您用来编辑的编辑器在您的目录中/etc/nginx/sites-enabled/default留下了一个临时文件default~(注意这个~后缀) 。/etc/nginx/sites-enabled/你应该删除它。

于 2013-08-13T21:34:22.653 回答