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: