From 53b74ec6122c94853f9d43ab2ac1f69efab0886d Mon Sep 17 00:00:00 2001 From: Zach Berwaldt Date: Mon, 18 Mar 2024 21:27:24 -0400 Subject: clean up, add better error handling --- api/water-api.nginx.conf | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 api/water-api.nginx.conf (limited to 'api/water-api.nginx.conf') 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 @@ +server { + listen 443 ssl; + listen [::]:443 ssl; + server_name water-api.example.com; + location / { + proxy_pass http://localhost:8888; + } +} -- cgit v1.1