tailscale-docker/images/nginx/conf.d/default.conf

18 lines
423 B
Text
Raw Normal View History

2022-08-22 18:03:01 +00:00
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;
}
}