Skip to content

Instantly share code, notes, and snippets.

@costa
Last active August 10, 2021 13:00
Show Gist options
  • Save costa/a148165e08f42985bd7b8d8868f1be89 to your computer and use it in GitHub Desktop.
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
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