nginx无法解析php,求高人协助
本人在虚拟机通过源码方式安装nginx和phpnginx的配置文件如下:
vim /usr/local/nginx/conf/nginx.conf
#usernobody;
worker_processes4;
error_loglogs/error.log;
#error_loglogs/error.lognotice;
#error_loglogs/error.loginfo;
pid logs/nginx.pid;
events {
worker_connections1024;
}
http {
include mime.types;
default_typeapplication/octet-stream;
#log_formatmain'$remote_addr - $remote_user [$time_local] "$request" '
# '$status $body_bytes_sent "$http_referer" '
# '"$http_user_agent" "$http_x_forwarded_for"';
#access_loglogs/access.logmain;
sendfile on;
#tcp_nopush on;
#keepalive_timeout0;
keepalive_timeout65;
#gzipon;
server {
listen 80;
server_namelocalhost;
#charset koi8-r;
#access_loglogs/host.access.logmain;
location ~ .*\.(php)?$
{
expires -1s;
try_files $uri =404;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
include fastcgi_params;
fastcgi_param PATH_INFO $fastcgi_path_info;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
fastcgi_pass 127.0.0.1:9000;
}
location / {
root html;
indexindex.html index.htm;
}
#error_page404 /404.html;
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504/50x.html;
location = /50x.html {
root html;
}
#location ~ \.php$ {
# root html;
# fastcgi_pass unix:/tmp/php-fcgi.sock;
## fastcgi_pass 127.0.0.1:9000;
# fastcgi_index index.php;
# fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
# include fastcgi_params;
## include fastcgi.conf;
#}
#location ~ .*\.(php)?$
#{
# expires -1s;
# try_files $uri =404;
# fastcgi_split_path_info ^(.+\.php)(/.+)$;
# include fastcgi_params;
# fastcgi_param PATH_INFO $fastcgi_path_info;
# fastcgi_index index.php;
# fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
# fastcgi_pass 127.0.0.1:9000;
#
#}
# proxy the PHP scripts to Apache listening on 127.0.0.1:80
#
#location ~ \.php$ {
# proxy_pass http://127.0.0.1;
#}
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
#location ~ \.php$ {
# root html;
# fastcgi_pass 127.0.0.1:9000;
# fastcgi_indexindex.php;
# fastcgi_paramSCRIPT_FILENAME/scripts$fastcgi_script_name;
# include fastcgi_params;
#}
# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
#location ~ /\.ht {
# denyall;
#}
}
# another virtual host using mix of IP-, name-, and port-based configuration
#
#server {
# listen 8000;
# listen somename:8080;
# server_namesomenamealiasanother.alias;
# location / {
# root html;
# indexindex.html index.htm;
# }
#}
# HTTPS server
#
#server {
# listen 443 ssl;
# server_namelocalhost;
# ssl_certificate cert.pem;
# ssl_certificate_keycert.key;
# ssl_session_cache shared:SSL:1m;
# ssl_session_timeout5m;
# ssl_ciphersHIGH:!aNULL:!MD5;
# ssl_prefer_server_cipherson;
# location / {
# root html;
# indexindex.html index.htm;
# }
#}
}
vim /usr/local/php/etc/php-fpm.conf
pid = /var/run/php-fpm.pid
error_log = /var/log/php-fpm.log
listen = /tmp/php-fcgi.sock
user=php-fpm
group=php-fpm
pm = dynamic
pm.max_children = 50
pm.start_servers = 20
pm.min_spare_servers = 5
pm.max_spare_servers = 35
pm.max_requests = 500
rlimit_files = 1024
通过ps查看php-fpm和nginx服务都是正常开启,防火墙iptables已经关闭,然而访问/usr/local/nginx/html/2.php的时候出现:
通过百度搜了好多帖子,仍没有有效办法解决。哪位高人帮忙解决一下?看看配置文件有什么问题?谢谢!
一看知道楼主对这块不熟悉,贴出php完整配置,另外再查下php进程。 回复 2# h101com
php的配置就是拷贝的原来的,没有做任何改动。
php进程:
# ps aux | grep php
root 124200.00.4 2027044576 ? Ss 03:49 0:00 php-fpm: master process (/usr/local/php/etc/php-fpm.conf)
php-fpm 124210.00.3 2027043844 ? S 03:49 0:00 php-fpm: pool www
php-fpm 124220.00.3 2027043844 ? S 03:49 0:00 php-fpm: pool www
php-fpm 124230.00.3 2027043844 ? S 03:49 0:00 php-fpm: pool www
php-fpm 124240.00.3 2027043844 ? S 03:49 0:00 php-fpm: pool www
php-fpm 124250.00.3 2027043844 ? S 03:49 0:00 php-fpm: pool www
php-fpm 124260.00.3 2027043844 ? S 03:49 0:00 php-fpm: pool www
php-fpm 124270.00.3 2027043844 ? S 03:49 0:00 php-fpm: pool www
php-fpm 124280.00.3 2027043848 ? S 03:49 0:00 php-fpm: pool www
php-fpm 124290.00.3 2027043848 ? S 03:49 0:00 php-fpm: pool www
php-fpm 124300.00.3 2027043848 ? S 03:49 0:00 php-fpm: pool www
php-fpm 124310.00.3 2027043848 ? S 03:49 0:00 php-fpm: pool www
php-fpm 124320.00.3 2027043848 ? S 03:49 0:00 php-fpm: pool www
php-fpm 124330.00.3 2027043848 ? S 03:49 0:00 php-fpm: pool www
php-fpm 124340.00.3 2027043848 ? S 03:49 0:00 php-fpm: pool www
php-fpm 124350.00.3 2027043848 ? S 03:49 0:00 php-fpm: pool www
php-fpm 124360.00.3 2027043848 ? S 03:49 0:00 php-fpm: pool www
php-fpm 124370.00.3 2027043848 ? S 03:49 0:00 php-fpm: pool www
php-fpm 124380.00.3 2027043848 ? S 03:49 0:00 php-fpm: pool www
php-fpm 124390.00.3 2027043848 ? S 03:49 0:00 php-fpm: pool www
php-fpm 124400.00.3 2027043848 ? S 03:49 0:00 php-fpm: pool www
root 169200.00.0 103332 860 pts/1 S+ 07:41 0:00 grep php
上面那段不是完整配置。
页:
[1]