feat: add events and talks nginx configs
Test nginx configuration / Static Analysis (push) Failing after 6s
Test nginx configuration / nginx Syntax Check (push) Failing after 17s
Security Scan and Upload / Security & DefectDojo Upload (push) Successful in 1m24s

This commit is contained in:
2026-06-24 20:20:29 -07:00
committed by Naomi Carrigan
parent 82d075e7c1
commit f40690b574
2 changed files with 29 additions and 0 deletions
+28
View File
@@ -0,0 +1,28 @@
# Speaking sites: events listing and talk companion guides.
server {
listen 443 ssl;
server_name events.nhcarrigan.com;
ssl_certificate /etc/letsencrypt/live/events.nhcarrigan.com/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/events.nhcarrigan.com/privkey.pem;
root /home/naomi/events;
location / {
index index.html;
}
include /etc/nginx/snippets/deny-dotfiles.conf;
}
server {
listen 443 ssl;
server_name talks.nhcarrigan.com;
ssl_certificate /etc/letsencrypt/live/talks.nhcarrigan.com/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/talks.nhcarrigan.com/privkey.pem;
root /home/naomi/talks;
location / {
try_files $uri $uri/index.html =404;
}
include /etc/nginx/snippets/deny-dotfiles.conf;
}
+1
View File
@@ -0,0 +1 @@
../sites-available/speaking.conf