Home  >  Article  >  Backend Development  >  php-nginx安装成功后访问IP提示500 Internal Server Error

php-nginx安装成功后访问IP提示500 Internal Server Error

WBOY
WBOYOriginal
2016-06-02 11:28:481393browse

nginxphp配置

截取报错信息如下:
图片说明
nginx.conf配置文件是copy的别人教程里面的。

#user nobody;
worker_processes 1;

error_log logs/error.log;
#error_log logs/error.log notice;
#error_log logs/error.log info;

#pid logs/nginx.pid;

events {
worker_connections 1024;
}

http {
include mime.types;
default_type application/octet-stream;

<code>log_format  main  '$remote_addr - $remote_user [$time_local] "$request" '                  '$status $body_bytes_sent "$http_referer" '                  '"$http_user_agent" "$http_x_forwarded_for"';sendfile        on;#tcp_nopush     on;#keepalive_timeout  0;keepalive_timeout  65;#gzip  on;server {    listen       80;    server_name  sanhe.phis.bz static.phis.bz;    root E:/PHIS/admin;    index index.html index.htm index.php;    #access_log  logs/host.access.log  main;    error_page  404 405          /error/404.html;            error_page  500 502 503 504  /error/50x.html;    #--request php file(use for www.phis.bz)    #location ~ .*\.(php|php5)?$ {    #   fastcgi_pass   127.0.0.1:9000;    #    fastcgi_index  index.php;    #    fastcgi_param  SCRIPT_FILENAME   E:/PHIS/admin$fastcgi_script_name;    #    include        fastcgi_params.phis;    #}    #--request image file    location ~ .*\.(gif|jpg|jpeg|png|bmp)$ {        access_log off;        expires 1h;    }    #--request static file    location ~ .*\.(js|css|swf)?$ {        access_log off;        expires 2d;    }    #--can not request file    location ~* .*\.(asp|aspx|dl|htaccess)($|\?) {        return 405;        access_log  off;    }    #--can not visite dir    location ~* .*\/(controllers|views|lib|log|cron)(\/|$|\?) {        return 405;    }    #--http request    location / {        fastcgi_pass 127.0.0.1:9000;        fastcgi_index index.php;        fastcgi_param  SCRIPT_FILENAME   E:/PHIS/admin$fastcgi_script_name;        include fastcgi_params.phis;        #all request to index.php                           if (!-e $request_filename) {            #return 500;            rewrite ^/(.*)$ /index.php  last;        }    }}</code>

}

<code></code>
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn