Skip to content

Instantly share code, notes, and snippets.

@nalakawula
Created December 29, 2018 03:54
Show Gist options
  • Save nalakawula/0477fdac4c2f85c5320940f776b4238b to your computer and use it in GitHub Desktop.
Save nalakawula/0477fdac4c2f85c5320940f776b4238b to your computer and use it in GitHub Desktop.
Nginx reserve proxy tomcat
server {
listen 80;
server_name yourdomain.com;
root /etc/tomcat7/webapps/apple;
proxy_cache one;
location / {
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-Proto $scheme;
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:8080/;
}
}
=======solusi lain=====
location /app {
proxy_pass http://127.0.0.1:8080/apurav-web;
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_cookie_path ~*^/.* /;
}
<Engine name="Catalina" defaultHost="localhost">
<Valve className="org.apache.catalina.valves.RemoteIpValve"
internalProxies="127\.0\.[0-1]\.1"
remoteIpHeader="x-forwarded-for"
requestAttributesEnabled="true"
protocolHeader="x-forwarded-proto"
protocolHeaderHttpsValue="https"/>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment