diff options
author | Johannes Löthberg <johannes@kyriasis.com> | 2020-05-27 00:39:15 +0200 |
---|---|---|
committer | Johannes Löthberg <johannes@kyriasis.com> | 2020-05-27 00:39:15 +0200 |
commit | 57e09bd60cbd64a5c92219d7d2f0f1964ed06f2b (patch) | |
tree | 4d557c761409b7c097db0b5c1b79d7a6b762a3aa /nginx | |
parent | 540fd3f141706976a3d1a56aba21811caa6bd007 (diff) | |
download | pillar-57e09bd60cbd64a5c92219d7d2f0f1964ed06f2b.tar.xz |
Add proxy_pass to gallery
Signed-off-by: Johannes Löthberg <johannes@kyriasis.com>
Diffstat (limited to 'nginx')
-rw-r--r-- | nginx/gallery_remmy_io.sls | 59 |
1 files changed, 59 insertions, 0 deletions
diff --git a/nginx/gallery_remmy_io.sls b/nginx/gallery_remmy_io.sls new file mode 100644 index 0000000..5d84e98 --- /dev/null +++ b/nginx/gallery_remmy_io.sls @@ -0,0 +1,59 @@ +nginx: + servers: + managed: + gallery.remmy.io: + enabled: True + config: + - server: + - server_name: gallery.remmy.io + - listen: 80 + - listen: '[::]:80' + + - location /.well-known/acme-challenge: + - root: /srv/http + + - location /: + - return: '301 https://$server_name$request_uri' + + + - server: + - server_name: gallery.remmy.io + - listen: 443 ssl http2 + - listen: '[::]:443 ssl http2' + + - ssl_certificate: /etc/letsencrypt/live/gallery.remmy.io/fullchain.pem + - ssl_certificate_key: /etc/letsencrypt/live/gallery.remmy.io/privkey.pem + - ssl_dhparam: /etc/nginx/dhparam.pem + + - ssl_stapling: 'on' + - ssl_stapling_verify: 'on' + - ssl_trusted_certificate: /etc/letsencrypt/live/gallery.remmy.io/fullchain.pem + + # https://developer.mozilla.org/en-US/docs/Security/HTTP_Strict_Transport_Security + - add_header: 'Strict-Transport-Security "max-age=31536000"' + + # Tell browsers not to render the page inside a frame, and avoid clickjacking. + - add_header: X-Frame-Options SAMEORIGIN + + # Tell browsers to not try to auto-detect the Content-Type. + - add_header: X-Content-Type-Options nosniff + + # Enable the Cross-site scripting filter in most recent browsers. + # Normally enabled by default, but enable it anyway if user has disabled it. + - add_header: 'X-XSS-Protection "1; mode=block"' + + # http://www.gnuterrypratchett.com/ + - add_header: 'X-Clacks-Overhead "GNU Terry Pratchett"' + + - error_log: /var/log/nginx/gallery_remmy_io.error.log + + - try_files: $uri $uri.html $uri/ =404 + + - location /: + - proxy_http_version: '1.1' + - proxy_pass: 127.0.0.1:8186 + + - location ~ \.(js|css|png): + - expires: modified +7d + +# vim: ft=yaml et: |