Files
nginx-configs/nginx/nginx/sites-available/workshops.conf
T
naomi ca5ffe822e
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 1m43s
feat: cipher and workshops
2026-06-06 20:24:07 -07:00

16 lines
476 B
Plaintext

# Workshops Angular SPA (companion guides for live workshops).
server {
listen 443 ssl;
server_name workshops.nhcarrigan.com;
ssl_certificate /etc/letsencrypt/live/workshops.nhcarrigan.com/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/workshops.nhcarrigan.com/privkey.pem;
root /home/naomi/workshops/dist/workshops/browser;
index index.html;
location / {
try_files $uri $uri/ /index.html;
}
include /etc/nginx/snippets/deny-dotfiles.conf;
}