Created
December 29, 2018 03:54
-
-
Save nalakawula/0477fdac4c2f85c5320940f776b4238b to your computer and use it in GitHub Desktop.
Nginx reserve proxy tomcat
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 ~*^/.* /; | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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