Sync runner checkout / sync (push) Successful in 7s
## Summary - Closes [#29](#29). - Register `dta_blog` in `app_catalog` (`type: node-static`, repo `Ditch_The_Agent/dta_blog`, default branch `main`, webroot `/var/www/{env}.blog.realpath.app/html`). Reuses `roles/app-deploy/tasks/node_static.yml` (`npm ci` then `npm run build:<env>`); the blog's `package.json` copies `dist/` to that webroot after `python3 build.py --env <env>`. - Add prod **8086** / beta **8087** `host_apps` on adama, roslin, starbuck, apollo, and ai-server-4080 (those ports were free vs 8080–8085 / 8088). - Optional nginx `error_page 404 /404.html` for this app only (`error_page_404` catalog field); other static apps keep the SPA `try_files` fallback. - Document NPM/DNS (`blog.realpath.app` → `:8086`, `beta.blog.realpath.app` → `:8087`), no `realpath.app/blog` mount, and UFW staying LAN/NPM-only. ## Test plan - [ ] Confirm 8086/8087 unused on app hosts before first deploy. - [ ] `./scripts/deploy.sh --app dta_blog --env beta --ref main` publishes `/var/www/beta.blog.realpath.app/html`. - [ ] `./scripts/deploy.sh --app dta_blog --env prod --ref main` publishes `/var/www/prod.blog.realpath.app/html`. - [ ] **Until [dta_blog#1](Ditch_The_Agent/dta_blog#1) is on `main`**, use `--ref issue-1-static-blog` so the SSG (not the stub README) is built. - [ ] NPM + DNS + TLS: `blog.realpath.app` → `:8086`, `beta.blog.realpath.app` → `:8087`. Do not reverse-proxy onto `realpath.app/blog`. - [ ] Prod HTML has article text, Tianji id `cmtvvmf562afjzqumwt1yh2y8`, links to `https://realpath.app/`. - [ ] Beta HTML has Tianji id `cmtvvn6z62agdzqumtk8xijpy`, links to `https://beta.realpath.app/`, demo posts present. - [ ] `https://blog.realpath.app/sitemap.xml`, `robots.txt`, `llms.txt` return 200. - [ ] Unknown slug returns 404.html (not the index SPA fallback). Reviewed-on: #30
51 lines
1.4 KiB
Django/Jinja
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 %}
|