bunkerweb/examples/tomcat/server-confs/reverse-proxy.conf
2020-11-06 22:24:34 +01:00

7 lines
159 B
Plaintext

proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
location / {
proxy_pass http://mytomcat:8080/sample$request_uri;
}