feat: scripture page too
Test nginx configuration / Static Analysis (push) Successful in 4s
Test nginx configuration / nginx Syntax Check (push) Successful in 17s
Security Scan and Upload / Security & DefectDojo Upload (push) Successful in 1m11s

This commit is contained in:
2026-03-10 11:57:35 -07:00
parent 0004e5b037
commit f3f65e9d92
2 changed files with 14 additions and 1 deletions
+1 -1
View File
@@ -9,7 +9,7 @@ server {
location /api/ {
proxy_set_header Host $host;
proxy_pass http://127.0.0.1:3898;
proxy_pass http://127.0.0.1:3898/;
proxy_redirect off;
}
+13
View File
@@ -11,3 +11,16 @@ server {
index index.html;
}
}
server {
listen 443 ssl;
server_name scripture.nhcarrigan.com;
ssl_certificate /etc/letsencrypt/live/scripture.nhcarrigan.com/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/scripture.nhcarrigan.com/privkey.pem;
root /home/naomi/scripture;
location / {
index index.html;
}
}