docker-streaming-server/srv/streaming/proxy.conf

16 lines
274 B
Plaintext
Raw Normal View History

2020-09-20 23:22:29 +02:00
server {
listen 80;
location / {
proxy_pass http://playout:80;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
}
location /hls {
proxy_pass http://relay:80;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
}
}