>  기사  >  백엔드 개발  >  php-nginx安装成功后访问IP提示500 Internal Server Error

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

WBOY
WBOY원래의
2016-06-02 11:28:481392검색

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>
성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.