forked from wcedmisten/docker-openstreetmap-stack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
nginx.conf
36 lines (33 loc) · 772 Bytes
/
nginx.conf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
# add to /etc/nginx/sites-available/default
server {
server_name maps.wcedmisten.dev;
location / {
proxy_set_header Host $host;
proxy_pass http://127.0.0.1:8080;
proxy_redirect off;
}
}
server {
server_name valhalla.wcedmisten.dev;
location / {
proxy_set_header Host $host;
proxy_pass http://127.0.0.1:8002;
proxy_redirect off;
}
}
server {
server_name nominatim.wcedmisten.dev;
location / {
proxy_set_header Host $host;
proxy_pass http://127.0.0.1:8010;
proxy_redirect off;
}
}
server {
server_name map-demo.wcedmisten.dev;
location / {
proxy_set_header Host $host;
proxy_pass http://127.0.0.1:8020;
proxy_redirect off;
}
}