在 ubuntu 上使用 nginx 和 php5-fpm 进行配置帮助
Posted
技术标签:
【中文标题】在 ubuntu 上使用 nginx 和 php5-fpm 进行配置帮助【英文标题】:Config assistance with nginx & php5-fpm on ubuntu 【发布时间】:2011-11-15 16:18:09 【问题描述】:我正在尝试在 ubuntu 11 上使用 php-fpm (php v 5.3.5) 配置 nginx。nginx 和 php5-fpm 都设置为作为 www-data 运行。 nginx 似乎提供 html 文件,但未提供 php 文件(日志文件生成 404 错误)。 php5-fpm 正在运行并侦听 nginx 尝试连接的同一端口(9000)。配置文件复制如下。文件位于 /var/www (www-data 对该目录中的所有文件具有读/写权限)。
我该如何解决这个问题,以便确定 php5-fpm 是否正确接收来自 nginx 的请求,以及是否由于权限不正确/配置文件位置不正确而无法处理请求。
任何帮助将不胜感激。
nginx.conf 文件:
user www-data;
worker_processes 4;
pid /var/run/nginx.pid;
events
worker_connections 768;
http
include mime.types;
sendfile on;
tcp_nopush on;
tcp_nodelay on;
keepalive_timeout 65;
types_hash_max_size 2048;
# server_tokens off;
server_names_hash_bucket_size 64;
# server_name_in_redirect off;
include /etc/nginx/mime.types;
default_type application/octet-stream;
access_log /var/log/nginx/access.log;
error_log /var/log/nginx/error.log;
gzip on;
gzip_disable "msie6";
gzip_comp_level 2;
gzip_proxied any;
gzip_http_version 1.1;
gzip_buffers 16 8k;
gzip_types text/plain text/css text/javascript application/json application/x-javascript text/xml application/xml application/xml+rss;
include /etc/nginx/conf.d/*.conf;
include /etc/nginx/sites-enabled/*;
站点(启用/可用)文件夹中的默认文件:
default
server
listen 80;
server_name localhost;
access_log /var/log/nginx/localhost.access.log;
location /
root /var/www;
index index.html index.php;
try_files $uri $uri/ /index.php?q=$uri&$args;
location ~* ^.+.(jpg|jpeg|gif|css|png|js|ico|xml)$
access_log off;
expires 30d;
root /var/www;
## Disable viewing .htaccess & .htpassword
location ~ /\.ht
deny all;
include php.conf;
nginx目录下的php.config文件:
fastcgi_intercept_errors on;
location ~ \.php$
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_param PATH_INFO $fastcgi_path_info;
fastcgi_param PATH_TRANSLATED $document_root$fastcgi_path_info;
fastcgi_param QUERY_STRING $query_string;
fastcgi_param REQUEST_METHOD $request_method;
fastcgi_param CONTENT_TYPE $content_type;
fastcgi_param CONTENT_LENGTH $content_length;
fastcgi_param SCRIPT_NAME $fastcgi_script_name;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_param REQUEST_URI $request_uri;
fastcgi_param DOCUMENT_URI $document_uri;
fastcgi_param DOCUMENT_ROOT /var/www;
fastcgi_param SERVER_PROTOCOL $server_protocol;
fastcgi_param GATEWAY_INTERFACE CGI/1.1;
fastcgi_param SERVER_SOFTWARE nginx;
fastcgi_param REMOTE_ADDR $remote_addr;
fastcgi_param REMOTE_PORT $remote_port;
fastcgi_param SERVER_ADDR $server_addr;
fastcgi_param SERVER_PORT $server_port;
fastcgi_param SERVER_NAME $server_name;
fastcgi_read_timeout 600; # Set fairly high for debugging
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
php5-fpm 的日志文件输出:
configuration file /etc/php5/fpm/main.conf test is successful
nginx 的日志文件输出:
"GET /index.php HTTP/1.1" 404 31 "-" "Mozilla/5.0 (X11; Linux x86_64) AppleWebKit/535.1 (KHTML, like Gecko) Chrome/13.0.782.220 Safari/535.1"
【问题讨论】:
【参考方案1】:a回答原始问题。在您的 vhost 配置中,缺少一部分,告诉 nginx 如何处理 PHP 文件。
例子:
location ~ \.php$
include /etc/nginx/fastcgi_params;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME PATH_TO_YOUR_WEBSITE_ROOT$fastcgi_script_name;
您还可以查看https://www.digitalocean.com/community/articles/how-to-install-linux-nginx-mysql-php-lemp-stack-on-ubuntu-12-04,如果您计划运行多个虚拟主机https://www.digitalocean.com/community/tutorials/how-to-optimize-nginx-with-php-pools-on-an-ubuntu-13-04-vps 两个教程都很好地展示了如何设置所有内容。
【讨论】:
【参考方案2】:您的服务器块中缺少一些用于通过php5-fpm
传递 php 文件的部分。
例如
location ~ .php$
include /etc/nginx/fastcgi_params;
fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME /var/www$fastcgi_script_name;
要写入新的服务器块(/site-enabled
中的位),请尝试使用 this tool。
【讨论】:
以上是关于在 ubuntu 上使用 nginx 和 php5-fpm 进行配置帮助的主要内容,如果未能解决你的问题,请参考以下文章
关于 PHP5-FPM 和 NginX 的 MediaWiki PHP 会话
Ubuntu14.04 安装nginx+php5-fpm 后访问php页面空白,怎么解决
阿里云配置php环境 ubuntu12.04 32 nginx+php5+mysql
ubuntu16.04搭载nginx。然后更换nginx适配的PHP的版本的操作 || Ubuntu PHP版本切换
---------已搬运---------ubuntu16.04搭载nginx。然后更换nginx适配的PHP的版本的操作 || Ubuntu PHP版本切换