aboutsummaryrefslogtreecommitdiff
path: root/api/water-api.nginx.conf
diff options
context:
space:
mode:
authorZach Berwaldt <zberwaldt@tutamail.com>2024-03-18 21:27:24 -0400
committerZach Berwaldt <zberwaldt@tutamail.com>2024-03-18 21:27:24 -0400
commiteb51bdbfef8c2aacf0fdfde279a40de7f74c8d86 (patch)
treef8fdfb4e28fa271eda3027d84843e4b476831cdd /api/water-api.nginx.conf
parent5ddcd1cf663cc732819cfcb66f2ff6b1bbeb0d47 (diff)
clean up, add better error handling
Diffstat (limited to 'api/water-api.nginx.conf')
-rw-r--r--api/water-api.nginx.conf8
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 @@
1server {
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}