From f775042b20ff023728274567b2eae412614fb9ab Mon Sep 17 00:00:00 2001 From: cyfraeviolae Date: Sat, 20 Jul 2024 03:03:43 -0400 Subject: qr conf --- cyfraeviolae.conf | 9 +++++++-- quietreading.conf | 30 ++++++++++++++++++++++++++++++ 2 files changed, 37 insertions(+), 2 deletions(-) create mode 100644 quietreading.conf diff --git a/cyfraeviolae.conf b/cyfraeviolae.conf index 7bce20e..213b9a1 100644 --- a/cyfraeviolae.conf +++ b/cyfraeviolae.conf @@ -109,6 +109,11 @@ server { add_header Cache-Control "public"; } + location /about { + default_type "text/html"; + alias /srv/quietreading/about.html; + } + error_page 404 /404.html; location = /404.html { root /srv/quietreading; @@ -149,8 +154,8 @@ server { add_header Cache-Control "public"; } - error_page 404 /404.html; - location = /404.html { + error_page 404 /index.html; + location = /index.html { root /srv/aseemslegit; expires 1h; add_header Cache-Control "public"; diff --git a/quietreading.conf b/quietreading.conf new file mode 100644 index 0000000..5bb321d --- /dev/null +++ b/quietreading.conf @@ -0,0 +1,30 @@ +daemon off; +error_log /home/sy/code/logs/error.log; +pid /home/sy/code/logs/nginx.pid; + +events {} +http { + include /etc/nginx/mime.types; + proxy_temp_path /home/sy/code/logs; + client_body_temp_path /home/sy/code/nginx/files; + default_type application/octet-stream; + server { + access_log /home/sy/code/logs/quietreading-access.log; + + location / { + root /home/sy/code/site/quietreading; + } + + location /about { + default_type "text/html"; + alias /home/sy/code/site/quietreading/about.html; + } + + error_page 404 /404.html; + location = /404.html { + root /home/sy/code/site/quietreading; + } + + listen 9080; + } +} -- cgit v1.2.3