Skip to content

Instantly share code, notes, and snippets.

@robbiet480
Created February 11, 2016 05:44
Show Gist options
  • Star 8 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save robbiet480/b1e9a2a22501b8304547 to your computer and use it in GitHub Desktop.
Save robbiet480/b1e9a2a22501b8304547 to your computer and use it in GitHub Desktop.
server {
listen 80;
server_name yournamehere.com;
return 301 https://$host$request_uri;
}
server {
listen 443 ssl;
server_name yournamehere.com;
root /usr/share/nginx/html;
ssl on;
ssl_certificate /etc/letsencrypt/live/yournamehere.com/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/yournamehere.com/privkey.pem;
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
ssl_prefer_server_ciphers on;
ssl_ciphers 'EECDH+AESGCM:EDH+AESGCM:AES256+EECDH:AES256+EDH';
ssl_session_cache shared:SSL:1m;
location / {
proxy_pass http://localhost:5984;
proxy_redirect off;
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Ssl on;
}
location ~ /.well-known {
allow all;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment