Skip to content

Instantly share code, notes, and snippets.

@lucasRolff
Created January 28, 2017 19:08
Embed
What would you like to do?
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