aboutsummaryrefslogtreecommitdiff
path: root/api/water-api.nginx.conf
diff options
context:
space:
mode:
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}