From 9c5a1be87eed1ff7a6f54b6f92d98b666de92f92 Mon Sep 17 00:00:00 2001 From: Johannes Löthberg Date: Mon, 21 Nov 2016 12:31:27 +0000 Subject: Initial commit MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Johannes Löthberg --- theos/nginx/phabricator_kyriasis_com.sls | 52 ++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 theos/nginx/phabricator_kyriasis_com.sls (limited to 'theos/nginx/phabricator_kyriasis_com.sls') diff --git a/theos/nginx/phabricator_kyriasis_com.sls b/theos/nginx/phabricator_kyriasis_com.sls new file mode 100644 index 0000000..0907731 --- /dev/null +++ b/theos/nginx/phabricator_kyriasis_com.sls @@ -0,0 +1,52 @@ +nginx: + ng: + servers: + managed: + phabricator.kyriasis.com: + enabled: True + config: + - server: + - server_name: phabricator.kyriasis.com + - listen: 80 + - listen: '[::]:80' + - rewrite: '^ https://$server_name$request_uri? permanent' + + - server: + - server_name: phabricator.kyriasis.com + - listen: 443 ssl http2 + - listen: '[::]:443 ssl http2' + + - ssl: 'on' + - ssl_certificate: /etc/letsencrypt/live/phabricator.kyriasis.com/fullchain.pem + - ssl_certificate_key: /etc/letsencrypt/live/phabricator.kyriasis.com/privkey.pem + - ssl_dhparam: /etc/nginx/dhparam.pem + + - ssl_stapling: 'on' + - ssl_stapling_verify: 'on' + - ssl_trusted_certificate: /etc/letsencrypt/live/phabricator.kyriasis.com/fullchain.pem + + # 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"' + + - root: /srv/phabricator/phabricator/webroot + + - location /: + - index: index.php + - rewrite: '^/(.*)$ /index.php?__path__=/$1 last' + + - location /index.php: + - include: fastcgi.conf + - fastcgi_pass: unix:/var/run/php56-fpm/php-fpm.sock + - fastcgi_index: index.php + - fastcgi_param: SCRIPT_FILENAME $document_root$fastcgi_script_name + - fastcgi_param: SCRIPT_NAME $fastcgi_script_name + - fastcgi_param: REMOTE_ADDR $remote_addr + + - location /.well-known: + - root: /srv/http/ + +# vim: ft=yaml et: -- cgit v1.2.3-54-g00ecf