diff options
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 | } | ||