Last active
August 10, 2021 13:00
-
-
Save costa/a148165e08f42985bd7b8d8868f1be89 to your computer and use it in GitHub Desktop.
Sample (nginx) reverse proxy configuration for Docker Compose configuration for "staging" web interface access with OpenVPN
This file contains hidden or 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; | |
listen [::]:80; | |
location / { | |
proxy_pass https://some.internal-web.app; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment