Includes: API (Express/TypeScript), Astro site, Python workers, document generators, FCC compliance tools, Canada CRTC formation, Ansible infrastructure, and deployment scripts. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
20 lines
564 B
Django/Jinja
20 lines
564 B
Django/Jinja
# {{ ansible_managed }}
|
|
# HTTP-only config for initial certbot provisioning
|
|
|
|
server {
|
|
listen 80;
|
|
server_name performancewest.net www.performancewest.net;
|
|
|
|
# Certbot ACME challenge
|
|
location /.well-known/acme-challenge/ {
|
|
root {{ certbot_webroot }};
|
|
}
|
|
|
|
location / {
|
|
proxy_pass http://127.0.0.1:{{ site_port }};
|
|
proxy_set_header Host $host;
|
|
proxy_set_header X-Real-IP $remote_addr;
|
|
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
|
proxy_set_header X-Forwarded-Proto $scheme;
|
|
}
|
|
}
|