Skip to content

Instantly share code, notes, and snippets.

@lucasRolff
Created January 28, 2017 19:08
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 lucasRolff/3185c04b1bf514d76e741d5b1b7cc7e1 to your computer and use it in GitHub Desktop.
Save lucasRolff/3185c04b1bf514d76e741d5b1b7cc7e1 to your computer and use it in GitHub Desktop.
server {
listen 443 ssl;
server_name backup.domain.com;
ssl_certificate /etc/nginx/ssl/backup.domain.crt;
ssl_certificate_key /etc/nginx/ssl/backup.domain.key;
location / {
proxy_pass http://127.0.0.1:8080;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment