Skip to content

Instantly share code, notes, and snippets.

@nivekmai
Created October 15, 2016 05:34
Show Gist options
  • Save nivekmai/6d63d61b324c7ee17ae1fd792fc97ab8 to your computer and use it in GitHub Desktop.
Save nivekmai/6d63d61b324c7ee17ae1fd792fc97ab8 to your computer and use it in GitHub Desktop.
Home Assistant NGINX config (raspberry pi 3, letsencrypt)
server {
listen 80;
server_name home.foo.com;
root /var/www/home;
location / {
return 301 https://$host$request_uri;
}
location ~ /.well-known {
try_files $uri $uri/ @home_assistant;
}
location @home_assistant {
return 301 https://$host$request_uri;
}
}
server {
listen 443 ssl;
server_name home.foo.com;
ssl_certificate /etc/letsencrypt/live/home.foo.com/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/home.foo.com/privkey.pem;
ssl on;
location / {
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_pass http://127.0.0.1:8123;
proxy_read_timeout 90;
proxy_redirect hhttp://127.0.0.1:8123 https://home.foo.com;
proxy_buffering off;
}
# From the interwebz
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
ssl_prefer_server_ciphers on;
ssl_dhparam /etc/ssl/certs/dhparam.pem;
ssl_ciphers 'ECDHE-RSA-AES128-GCM-SHA256:ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES256-GCM-SHA384:ECDHE-ECDSA-AES256-GCM-SHA384:DHE-RSA-AES128-GCM-SHA256:DHE-DSS-AES128-GCM-SHA256:kEDH+AESGCM:ECDHE-RSA-AES128-SHA256:ECDHE-ECDSA-AES128-SHA256:ECDHE-RSA-AES128-SHA:ECDHE-ECDSA-AES128-SHA:ECDHE-RSA-AES256-SHA384:ECDHE-ECDSA-AES256-SHA384:ECDHE-RSA-AES256-SHA:ECDHE-ECDSA-AES256-SHA:DHE-RSA-AES128-SHA256:DHE-RSA-AES128-SHA:DHE-DSS-AES128-SHA256:DHE-RSA-AES256-SHA256:DHE-DSS-AES256-SHA:DHE-RSA-AES256-SHA:AES128-GCM-SHA256:AES256-GCM-SHA384:AES128-SHA256:AES256-SHA256:AES128-SHA:AES256-SHA:AES:CAMELLIA:DES-CBC3-SHA:!aNULL:!eNULL:!EXPORT:!DES:!RC4:!MD5:!PSK:!aECDH:!EDH-DSS-DES-CBC3-SHA:!EDH-RSA-DES-CBC3-SHA:!KRB5-DES-CBC3-SHA';
ssl_session_timeout 1d;
ssl_session_cache shared:SSL:50m;
ssl_stapling on;
ssl_stapling_verify on;
add_header Strict-Transport-Security max-age=15768000;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment