mirror of
https://github.com/jbowdre/tailscale-docker.git
synced 2024-11-26 11:32:18 +00:00
18 lines
No EOL
423 B
Text
18 lines
No EOL
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;
|
|
}
|
|
} |