# BOM radar loop — radar.pestrel.com # Installed to /etc/nginx/conf.d/radar.conf by setup.sh # # Requires /etc/nginx/nginx.conf to include: # include /etc/nginx/conf.d/*.conf; server { listen 80; listen [::]:80; server_name radar.pestrel.com; root /srv/www/radar; index index.html; # APNG refreshes every ~6 minutes; let clients revalidate often. location ~ \.apng$ { add_header Cache-Control "no-cache"; } location / { try_files $uri $uri/ =404; } }