diff options
author | Zach Berwaldt <zberwaldt@tutamail.com> | 2024-03-18 21:27:24 -0400 |
---|---|---|
committer | zberwaldt <17715430+zberwaldt@users.noreply.github.com> | 2024-03-18 21:30:13 -0400 |
commit | 53b74ec6122c94853f9d43ab2ac1f69efab0886d (patch) | |
tree | 02b6d887d5d0ba5d887ef0334f9dba07d3814292 /fe/water.nginx.conf | |
parent | e5fbe360d355557b978973f62eed06e01e85bb71 (diff) |
clean up, add better error handling
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 | } | ||