Skip to content

Commit 0b64db5

Browse files
author
Dan Kelley
committed
v1 of nginx
1 parent 4e015b9 commit 0b64db5

File tree

1 file changed

+11
-0
lines changed

1 file changed

+11
-0
lines changed

src/client/nginx-client.conf

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
server {
2+
listen 80;
3+
server_name localhost;
4+
location / {
5+
root /usr/share/nginx/html;
6+
index index.html index.htm;
7+
}
8+
location /api {
9+
proxy_pass http://paws-compose-server:5000;
10+
}
11+
}

0 commit comments

Comments
 (0)