aboutsummaryrefslogtreecommitdiff
path: root/api/water-api.nginx.conf
blob: 73b0d7ce933cc5a30a73bda3e4d9837669a00a70 (plain)
1
2
3
4
5
6
7
8
server {
    listen 443 ssl;
    listen [::]:443 ssl;
    server_name water-api.example.com;
    location / {
        proxy_pass http://localhost:8888;
    }
}