Files
server-infra/roles/web-static/templates/nginx.conf.j2
T
westfarn 9e42a4f55c
Sync runner checkout / sync (pull_request) Successful in 7s
Register dta_blog for node-static deploy (closes #29)
Catalog + host_apps on all webservers (prod 8086 / beta 8087) with webroots
under /var/www/{env}.blog.realpath.app/html. Nginx serves the SSG 404 page
instead of SPA index fallback.
2026-09-10 20:20:44 -05:00

51 lines
1.4 KiB
Django/Jinja

# Managed by Ansible (roles/web-static). Do not edit by hand.
# Access logs: JSON to stdout for Alloy → Loki (see dta_webapp/deploy/nginx-logging.conf).
log_format observability escape=json
'{'
'"timestamp":"$time_iso8601",'
'"level":"INFO",'
'"service":"$obs_app",'
'"app":"$obs_app",'
'"env":"$obs_env",'
'"message":"$request",'
'"method":"$request_method",'
'"status":$status,'
'"bytes":$body_bytes_sent,'
'"request_time":$request_time,'
'"uri":"$request_uri",'
'"remote_addr":"$remote_addr",'
'"user_agent":"$http_user_agent"'
'}';
{% for a in _static_apps %}
server {
listen {{ a.port }};
server_name _;
set $obs_app "{{ a.name }}";
set $obs_env "{{ a.env }}";
access_log /dev/stdout observability;
error_log /dev/stderr warn;
root {{ (app_catalog[a.name].webroot_pattern | default(web_static_root ~ '/{env}_' ~ a.name)) | replace('{env}', a.env) }};
index index.html;
{% if app_catalog[a.name].error_page_404 | default('') %}
error_page 404 {{ app_catalog[a.name].error_page_404 }};
location / {
try_files $uri $uri/ =404;
}
{% else %}
location / {
try_files $uri $uri/ /index.html;
}
{% endif %}
location ~* \.(?:js|css|woff2?|png|jpg|jpeg|gif|svg|ico)$ {
expires 7d;
add_header Cache-Control "public";
}
}
{% endfor %}