Skip to content

Instantly share code, notes, and snippets.

@vfrico
Created October 13, 2021 15:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vfrico/bb591ecf9dbfe535081818ba72f98389 to your computer and use it in GitHub Desktop.
Save vfrico/bb591ecf9dbfe535081818ba72f98389 to your computer and use it in GitHub Desktop.
nginx proxy interno redirige
server {
listen 8181;
listen [::]:8181;
server_name domain.name.example.com;
# Reenvía las peticiones a este servidor interno
location / {
proxy_pass http://localhost:8080;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment