summaryrefslogtreecommitdiff
path: root/nginx/pestrel.com.conf
blob: 95c7310ad596f2aad706f164a5d165b84bfe218c (plain)
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/pestrel;    index index.html;    location / {        try_files $uri $uri/ =404;    }}