Files
nginx-configs/nginx/nginx/sites-available/docs.conf
T
hikari e8318215a9
Test nginx configuration / Static Analysis (pull_request) Failing after 4s
Test nginx configuration / nginx Syntax Check (pull_request) Successful in 16s
Security Scan and Upload / Security & DefectDojo Upload (pull_request) Successful in 1m21s
docs: add README and per-file header comments
- Rewrote README with full directory structure, add/remove site
  workflows, deploy instructions, and a test suite reference table
- Added a one-line header comment to each sites-available/*.conf
  explaining what category of sites belongs in that file
2026-03-03 16:26:37 -08:00

66 lines
1.5 KiB
Plaintext

# Documentation and informational sites: contact, docs, manual, sitemap, socials.
server {
listen 443 ssl;
server_name contact.nhcarrigan.com;
ssl_certificate /etc/letsencrypt/live/contact.nhcarrigan.com/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/contact.nhcarrigan.com/privkey.pem;
root /home/naomi/socials;
location / {
index index.html;
}
}
server {
listen 443 ssl;
server_name docs.nhcarrigan.com;
ssl_certificate /etc/letsencrypt/live/docs.nhcarrigan.com/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/docs.nhcarrigan.com/privkey.pem;
root /home/naomi/docs/dist;
location / {
index index.html;
}
}
server {
listen 443 ssl;
server_name manual.nhcarrigan.com;
ssl_certificate /etc/letsencrypt/live/manual.nhcarrigan.com/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/manual.nhcarrigan.com/privkey.pem;
root /home/naomi/manual;
location / {
index index.html;
}
}
server {
listen 443 ssl;
server_name sitemap.nhcarrigan.com;
ssl_certificate /etc/letsencrypt/live/sitemap.nhcarrigan.com/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/sitemap.nhcarrigan.com/privkey.pem;
root /home/naomi/sitemap;
location / {
index index.html;
}
}
server {
listen 443 ssl;
server_name socials.nhcarrigan.com;
ssl_certificate /etc/letsencrypt/live/socials.nhcarrigan.com/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/socials.nhcarrigan.com/privkey.pem;
root /home/naomi/socials;
location / {
index index.html;
}
}