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 /api/water-api.nginx.conf | |
parent | e5fbe360d355557b978973f62eed06e01e85bb71 (diff) |
clean up, add better error handling
Diffstat (limited to 'api/water-api.nginx.conf')
-rw-r--r-- | api/water-api.nginx.conf | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/api/water-api.nginx.conf b/api/water-api.nginx.conf new file mode 100644 index 0000000..73b0d7c --- /dev/null +++ b/api/water-api.nginx.conf | |||
@@ -0,0 +1,8 @@ | |||
1 | server { | ||
2 | listen 443 ssl; | ||
3 | listen [::]:443 ssl; | ||
4 | server_name water-api.example.com; | ||
5 | location / { | ||
6 | proxy_pass http://localhost:8888; | ||
7 | } | ||
8 | } | ||