loveqinfei123 2016-01-07 07:07 采纳率: 0%
浏览 3331

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

}


  • 写回答

5条回答 默认 最新

  • tony4geek 2016-01-07 07:19
    关注

    你 10.129.153.76 可以连接上吗?

    评论

报告相同问题?

悬赏问题

  • ¥15 fesafe材料库问题
  • ¥35 beats蓝牙耳机怎么查看日志
  • ¥15 Fluent齿轮搅油
  • ¥15 八爪鱼爬数据为什么自己停了
  • ¥15 交替优化波束形成和ris反射角使保密速率最大化
  • ¥15 树莓派与pix飞控通信
  • ¥15 自动转发微信群信息到另外一个微信群
  • ¥15 outlook无法配置成功
  • ¥30 这是哪个作者做的宝宝起名网站
  • ¥60 版本过低apk如何修改可以兼容新的安卓系统