nginx通过代理使用80端口访问go web项目

server {
    listen       80;
    root /www/web/go;
    server_name go.hi-kai.top;

    location /nginx_status {
        stub_status on;
        access_log off;
    }

    location ~ /.well-known {
        allow all;
    }

    location ~ /\. {
        deny  all;
    }

    location / {
        proxy_set_header X-Real-IP $remote_addr;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
        proxy_set_header Host $http_host;
        proxy_set_header X-NginX-Proxy true;
        proxy_pass http://127.0.0.1:8000/;
        proxy_set_header X-NginX-Proxy true;
    }
}

发表评论

您的电子邮箱地址不会被公开。 必填项已用*标注