Compare commits

...

4 Commits

Author SHA1 Message Date
naomi b3ac647b00 chore: fix link
Security Scan and Upload / Security & DefectDojo Upload (push) Failing after 2s
Test nginx configuration / Static Analysis (push) Failing after 5s
Test nginx configuration / nginx Syntax Check (push) Failing after 16s
2026-05-11 17:05:35 -07:00
naomi 63a008f4f2 feat: image site
Security Scan and Upload / Security & DefectDojo Upload (push) Failing after 2s
Test nginx configuration / Static Analysis (push) Failing after 4s
Test nginx configuration / nginx Syntax Check (push) Failing after 15s
2026-05-11 16:55:46 -07:00
naomi c07d24f69f feat: new learn site
Test nginx configuration / Static Analysis (push) Failing after 5s
Test nginx configuration / nginx Syntax Check (push) Failing after 17s
Security Scan and Upload / Security & DefectDojo Upload (push) Successful in 1m41s
2026-05-07 19:16:39 -07:00
hikari 5517e9d77d feat: add personality.nhcarrigan.com
Test nginx configuration / Static Analysis (push) Failing after 6s
Test nginx configuration / nginx Syntax Check (push) Failing after 19s
Security Scan and Upload / Security & DefectDojo Upload (push) Successful in 1m46s
2026-04-20 21:45:14 -07:00
7 changed files with 68 additions and 2 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
# Auto-generated Cloudflare IP ranges
# Updated: Sun Apr 19 10:51:11 PM PDT 2026
# Updated: Wed May 6 10:53:55 PM PDT 2026
real_ip_header CF-Connecting-IP;
+15 -1
View File
@@ -1,4 +1,4 @@
# Static content and publishing sites: blog, books, donate, music, secrets, style, testimonials.
# Static content and publishing sites: blog, books, donate, music, personality, secrets, style, testimonials.
server {
listen 443 ssl;
server_name blog.nhcarrigan.com;
@@ -91,6 +91,20 @@ server {
include /etc/nginx/snippets/deny-dotfiles.conf;
}
server {
listen 443 ssl;
server_name personality.nhcarrigan.com;
ssl_certificate /etc/letsencrypt/live/personality.nhcarrigan.com/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/personality.nhcarrigan.com/privkey.pem;
root /home/naomi/personality/dist;
location / {
index index.html;
}
include /etc/nginx/snippets/deny-dotfiles.conf;
}
server {
listen 443 ssl;
server_name secrets.nhcarrigan.com;
+36
View File
@@ -0,0 +1,36 @@
server {
listen 443 ssl;
server_name img.nhcarrigan.com;
ssl_certificate /etc/letsencrypt/live/img.nhcarrigan.com/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/img.nhcarrigan.com/privkey.pem;
# allow large file uploads
client_max_body_size 50000M;
# disable buffering uploads to prevent OOM on reverse proxy server and make uploads twice as fast (no pause)
proxy_request_buffering off;
# increase body buffer to avoid limiting upload speed
client_body_buffer_size 1024k;
# Set headers
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
# enable websockets: http://nginx.org/en/docs/http/websocket.html
proxy_http_version 1.1;
proxy_redirect off;
# set timeout
proxy_read_timeout 600s;
proxy_send_timeout 600s;
send_timeout 600s;
location / {
proxy_pass http://127.0.0.1:2283;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
}
}
+13
View File
@@ -0,0 +1,13 @@
server {
listen 443 ssl;
server_name learn.nhcarrigan.com;
ssl_certificate /etc/letsencrypt/live/learn.nhcarrigan.com/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/learn.nhcarrigan.com/privkey.pem;
root /home/naomi/learn/dist;
location / {
index index.html;
}
include /etc/nginx/snippets/deny-dotfiles.conf;
}
+1
View File
@@ -0,0 +1 @@
../sites-available/img.conf
+1
View File
@@ -0,0 +1 @@
../sites-available/learn.conf
+1
View File
@@ -0,0 +1 @@
sites-available/img.conf