向Tomcat转发请求

时间:2017-01-11 13:41:39

标签: tomcat nginx

我正在尝试从nginx向tomcat转发请求。

我可以使用scoring.megahooked.com:8080/Bowling从外面到达它,但我似乎无法得到“scoring.megahooked.com”。有人能指出我正确的方向吗?

scoring.conf包括这个。

server {
    listen          80;
    server_name     scoring.megahooked.com;


    location / {
    proxy_set_header X-Forwarded-Host $host;
    proxy_set_header X-Forwarded-Server $host;
    proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
    proxy_pass http://127.0.0.1:7070/Bowling;
                                                    }
}

0 个答案:

没有答案