我正在尝试从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;
}
}