1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
# Synoptic chart site — pestrel.com # Installed to /etc/nginx/conf.d/synoptic.conf by setup.sh # # Requires /etc/nginx/nginx.conf to include: # include /etc/nginx/conf.d/*.conf; server { listen 80; listen [::]:80; server_name pestrel.com www.pestrel.com; root /srv/www; index index.html; location / { try_files $uri $uri/ =404; } }