我在macOS 10.12.4上安装了nginx 1.10.3和php 5.5.38作为开发服务器
当我在浏览器中尝试测试php文件时,正文为空,但响应标题似乎没问题:
HTTP/1.1 200 OK
Server: nginx/1.10.3
Date: Wed, 29 Mar 2017 11:35:21 GMT
Content-Type: text/html
Transfer-Encoding: chunked
Connection: keep-alive
X-Powered-By: PHP/5.5.38
php-fpm.log或nginx / error.log
中没有错误我的nginx.conf有:
server {
listen 80;
server_name wordpress.bob;
root /Users/mark/Sites/wordpress;
include /usr/local/etc/nginx/global_restrictions.conf;
include /usr/local/etc/nginx/wordpress.conf;
location ~ \.php$ {
try_files $uri =404;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass unix:/usr/local/var/run/php-www.sock;
fastcgi_index index.php;
include fastcgi_params;
}
}
wordpress.bob是一个本地主机名,用于测试指向etc / hosts
中的127.0.0.1php-fpm.conf有:
listen = '/usr/local/var/run/php-www.sock'
任何想法我做错了什么?
答案 0 :(得分:4)
如果没有阅读所有配置文件的能力,很难提供帮助。
你刚刚发布了一个,不是包含的,也没有php-fpm.conf。这不是不赞成的(配置文件的墙在问题中不太合适),但只是指出我们“看不到”的配置文件可能因安装而异。
无论如何,我发现我在wordpress网站的服务器上的配置文件存在一些差异。
以下是一些提示,因为您没有遇到任何错误 php-fpm 正在运行且 nginx 可以通过套接字与其“通信”(否则您会得到错误的网关错误。)
一开始......
server {
listen 80;
server_name wordpress.bob;
root /Users/mark/Sites/wordpress;
index index.php; # <-- ADD THIS
确保您所拥有的wordpress.conf
location / {
try_files $uri $uri/ /index.php?$args;
}
最后一部分......
location ~ \.php$ {
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_buffer_size 128k;
fastcgi_buffers 256 16k;
fastcgi_busy_buffers_size 256k;
fastcgi_temp_file_write_size 512k;
fastcgi_intercept_errors on;
fastcgi_max_temp_file_size 0;
fastcgi_connect_timeout 3s;
fastcgi_send_timeout 5s;
fastcgi_read_timeout 5s;
include fastcgi.conf; # <--- fastcgi.conf, NOT fastcgi_params
fastcgi_pass /usr/local/var/run/php-www.sock;
}
fastcgi.conf 和 fastcgi_params 之间的差异(在我的安装中)只有一行:
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
如果缺少这一行,php代码无法读取$_SERVER['SCRIPT_FILENAME']
和(我认为),这可能会破坏wordpress代码,导致空输出。
最后确保php-fpm工作进程具有访问/usr/local/var/run/php-www.sock
通常套接字具有相同的所有者:工人组。
worker用户和组在php-fpm.conf中设置:
; Unix user/group of processes
; Note: The user is mandatory. If the group is not set, the default user's group
; will be used.
user = ......
group = ......
答案 1 :(得分:1)
使用Homebrew安装NGINX:
$ brew install nginx
运行NGINX:
$ sudo nginx
测试localhost nginx:
http://localhost:8080
NGINX配置文件应该在:
$ /usr/local/etc/nginx/nginx.conf
如果您想更改默认端口:
$ sudo nginx -s stop
$ vim /usr/local/etc/nginx/nginx.conf
更改:listen 8080;
收件人:listen 80;
保存并配置并启动NGINX运行:
$ sudo nginx
然后,根据您的问题,您可能只是指向一个空的PHP文件。尝试打印phpinfo()然后查找“DOCUMENT_ROOT”以查看它的位置。