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

截取报错信息如下:
图片说明
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;

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;
        }
    }
}

}


你 10.129.153.76 可以连接上吗?

logs/error.log; 具体看看这个里面的错误。
同时你在不同的机器,虚拟机和本机做telent 对方看是不是可以连接上。
看看是不是防火墙的问题,上面错误就是连接拒绝,连接不上。

我先不弄什么多并发等各种复杂的配置呢,只需要让我能正常的看到welcome nginx页面,我一个人访问正常就可以了呢。
初学尝试安装下,至于配置,完了再仔细研究。

在你的location / 里面加上index index.php;

500错误是你的服务器内部错误,就是要看一下你的服务器应用处理出错了,添加一些log来分析