dream-setup/nginx
2025-03-22 15:13:10 +01:00
..
mime.types Add nginx/mime.types 2025-01-17 17:52:46 +01:00
nginx.conf Update nginx/nginx.conf 2025-01-08 12:31:32 +01:00
README.md Update nginx/README.md 2025-03-22 15:13:10 +01:00
server.conf Update nginx/server.conf 2025-01-07 16:09:40 +01:00

Do this in /etc/nginx (or if using Docker, the directory that maps to it)

  1. Remove everything in that directory
  2. Copy nginx.conf and mime.types from this directory
  3. Remove conf.d/default.conf
  4. Generate dhparam and snakeoil cert:
openssl dhparam -out dhparam.pem 4096 # This will take a few minutes. Reduce to 3072 if you'd like.
openssl req -new -x509 -days 365 -noenc -out snakeoil.pem -keyout snakeoil.key # just keep pressing Enter
  1. server entries go into conf.d/. See server.conf for a template.