summaryrefslogtreecommitdiffstats
path: root/theos/nginx/phabricator_kyriasis_com.sls
diff options
context:
space:
mode:
authorJohannes Löthberg <johannes@kyriasis.com>2016-11-21 12:31:27 +0000
committerJohannes Löthberg <johannes@kyriasis.com>2016-11-21 12:31:27 +0000
commit9c5a1be87eed1ff7a6f54b6f92d98b666de92f92 (patch)
treef91b8ba761a217ffd4f1642497f5bcab8c42f45d /theos/nginx/phabricator_kyriasis_com.sls
downloadpillar-9c5a1be87eed1ff7a6f54b6f92d98b666de92f92.tar.xz
Initial commit
Signed-off-by: Johannes Löthberg <johannes@kyriasis.com>
Diffstat (limited to 'theos/nginx/phabricator_kyriasis_com.sls')
-rw-r--r--theos/nginx/phabricator_kyriasis_com.sls52
1 files changed, 52 insertions, 0 deletions
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: