shell-things/etc/nginx
Aminda Suomalainen 94c23e2f7d
etc/nginx: fix line endings and indentation
UNTESTED! TODO WIP etc.?
2023-10-19 09:27:55 +03:00
..
conf.d etc/nginx: fix line endings and indentation 2023-10-19 09:27:55 +03:00
sites-enabled etc/nginx: fix line endings and indentation 2023-10-19 09:27:55 +03:00
README.md run prettier on markdown again? 2023-02-21 19:33:31 +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.