aboutsummaryrefslogtreecommitdiff
path: root/fe/water.nginx.conf
blob: a715845e73c16281a66d17580cc0ee7bb35845cd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
server {
  root /srv/www/water;
  index index.html index.htm;

    listen 443 ssl;
    listen [::]:443 ssl;
    server_name water.example.com;

    location / {
      try_files $uri $uri/ =404;
    }
}