mirror of
https://github.com/jbowdre/tailscale-docker.git
synced 2024-11-23 02:22:19 +00:00
18 lines
423 B
Text
18 lines
423 B
Text
|
server {
|
||
|
listen 80 default_server;
|
||
|
server_name _;
|
||
|
|
||
|
location /service-one {
|
||
|
proxy_pass http://service-one/;
|
||
|
proxy_set_header Host $http_host;
|
||
|
access_log /dev/stdout;
|
||
|
error_log /dev/stdout;
|
||
|
}
|
||
|
|
||
|
location /service-two {
|
||
|
proxy_pass http://service-two/;
|
||
|
proxy_set_header Host $http_host;
|
||
|
access_log /dev/stdout;
|
||
|
error_log /dev/stdout;
|
||
|
}
|
||
|
}
|