shell-things/etc/nginx
Aminda Suomalainen 8fc2d8905c
etc/nginx/README.md: add future warning
2020-03-07 21:08:57 +02:00
..
conf.d etc/nginx: remove / from the proxies 2019-09-18 17:40:00 +03:00
sites-enabled etc/nginx: remove / from the proxies 2019-09-18 17:40:00 +03:00
README.md etc/nginx/README.md: add future warning 2020-03-07 21:08:57 +02:00

README.md

Useful nginx files that I will probably need and which I will forget if I cannot read them from here.


FUTURE WARNING

These files may age badly, so here are some hopefully timeless pointers:

(the script runs $ACMESH --key-file $NGINXDIR/key.pem --fullchain-file $NGINXDIR/cert.pem --reloadcmd "$SYSTEMCTLRESTART nginx")

  • ssl_certificate, ssl_trusted_certificate are cert.pem
  • ssl_certificate_key is key.pem

The header syntax is following, THIS LIKELY WONT TIME WELL, ESPECIALLY CSP

    add_header Strict-Transport-Security "max-age=63072000; includeSubDomains" always;
    add_header X-Frame-Options "SAMEORIGIN" always;
    add_header Content-Security-Policy "block-all-mixed-content; default-src 'none'; form-action 'self'; connect-src 'self' ws: wss:; style-src 'self' https: 'unsafe-inline'; script-src 'self'; worker-src 'self'; child-src 'self'; manifest-src 'self'; font-src 'self' https:; media-src 'self' https:; img-src 'self' data: https://user-images.githubusercontent.com" always;
    add_header X-Content-Type-Options "nosniff" always;
    add_header Referrer-Policy "no-referrer" always;

The CSP comes from HEAD "http://[::]:9000/#/chan-1" to figure out what TheLounge would be setting without a reverse proxy in front of it. HEAD is in Debian package libwww-perl


Arch

Remove the default server block and add to http block:

include /etc/nginx/conf.d/*.conf;
include /etc/nginx/sites-enabled/*;

PHP: todo. It has something to do with php-fpm.sock instead of php5-fpm.sock, but that doesnt appear to be enough.