diff options
Diffstat (limited to 'fe/water.nginx.conf')
-rw-r--r-- | fe/water.nginx.conf | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/fe/water.nginx.conf b/fe/water.nginx.conf new file mode 100644 index 0000000..a715845 --- /dev/null +++ b/fe/water.nginx.conf | |||
@@ -0,0 +1,12 @@ | |||
1 | server { | ||
2 | root /srv/www/water; | ||
3 | index index.html index.htm; | ||
4 | |||
5 | listen 443 ssl; | ||
6 | listen [::]:443 ssl; | ||
7 | server_name water.example.com; | ||
8 | |||
9 | location / { | ||
10 | try_files $uri $uri/ =404; | ||
11 | } | ||
12 | } | ||