feat: add elysium.nhcarrigan.com nginx config
Test nginx configuration / Static Analysis (pull_request) Successful in 5s
Test nginx configuration / nginx Syntax Check (pull_request) Successful in 17s
Security Scan and Upload / Security & DefectDojo Upload (pull_request) Successful in 1m10s

 This issue was created with help from Hikari~ 🌸
This commit is contained in:
2026-03-07 02:01:39 -08:00
committed by Naomi Carrigan
parent fbdc386449
commit f433f3330a
2 changed files with 25 additions and 0 deletions
+24
View File
@@ -0,0 +1,24 @@
# Elysium Vite SPA and Hono API backend.
server {
listen 443 ssl;
server_name elysium.nhcarrigan.com;
ssl_certificate /etc/letsencrypt/live/elysium.nhcarrigan.com/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/elysium.nhcarrigan.com/privkey.pem;
root /home/naomi/elysium/apps/web/dist;
location /api/ {
proxy_set_header Host $host;
proxy_pass http://127.0.0.1:3898;
proxy_redirect off;
}
location / {
index index.html;
try_files $uri $uri/ /index.html;
}
location ~* \.(js|css)$ {
try_files $uri $uri/ @rewrite;
}
}
+1
View File
@@ -0,0 +1 @@
../sites-available/elysium.conf