Nginx没有在端口80上工作

时间:2016-05-11 04:01:21

标签: http nginx configuration

我在localhost:1337上运行了一个node.js服务器。我在sites_enabled中创建了一个nginx站点文件。如果我转到网址admin.tvchatter.cn:1337,它会正常工作,但如果我转到网址admin.tvchatter.cn,则网页会显示"欢迎使用nginx!"。似乎listen 80无效。文件内容是:

server {
    listen 80;
    server_name admin.tvchatter.cn;
    access_log /var/log/nginx/admin.tvchatter.cn.access.log;
    error_log /var/log/nginx/admin.tvchatter.cn.error.log;
    client_max_body_size 200m;

    gzip on;
    gzip_min_length 1k;
    gzip_buffers 16 64k;
    gzip_http_version 1.1;
    gzip_comp_level 6;
    gzip_types text/plain application/x-javascript text/javascript text/css application/xml;
    gzip_vary on;

    location /{
        proxy_pass http://127.0.0.1:1337;
        proxy_http_version 1.1;
        proxy_set_header Upgrade $http_upgrade;
        proxy_set_header Connection "upgrade";
    }
}

2 个答案:

答案 0 :(得分:0)

您需要指定root子句,默认情况下它包含值:/var/www/html/index.html因此您会看到默认的nginx页面。我的配置如下:

server {
    listen 80 default_server;
    listen [::]:80 default_server ipv6only=on;

    root /usr/share/nginx/html;
    index index.html index.htm;

答案 1 :(得分:0)

检查/etc/nginx/sites-enabled/中的所有文件以查找:

proxy_pass http://example.com:8080;

看到nginx使用proxy_pass到其他端口。

如果是,请将其禁用。