Skip to content

Commit 64ee986

Browse files
committed
chore(docs/privatemaps): fix nginx config example
1 parent d9fcf3c commit 64ee986

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

BlueMap/PrivateMaps/README.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,13 @@ Change
4646
```
4747
to
4848
```nginx
49-
# Go through PrivateMaps
49+
# Everything by default to BlueMap
5050
location / {
51+
proxy_pass http://127.0.0.1:8100;
52+
proxy_buffering off;
53+
}
54+
# Go through PrivateMaps
55+
location /maps/ {
5156
# Arbitary port which has to be same as the one in the server block below
5257
proxy_pass http://127.0.0.1:7999; # REPLACE ME
5358
proxy_buffering off;

0 commit comments

Comments
 (0)