mirror of
https://github.com/YGGverse/YGGbro.git
synced 2025-01-18 02:40:07 +00:00
19 lines
447 B
Org Mode
19 lines
447 B
Org Mode
|
# Mirror for https://hromadskeradio.org/
|
||
|
|
||
|
server {
|
||
|
|
||
|
# HTTP/IPv6 connections only
|
||
|
# listen [::]:80 ipv6only=on;
|
||
|
|
||
|
# Yggdrasil connections only
|
||
|
# allow 0200::/7;
|
||
|
# deny all;
|
||
|
|
||
|
# Tell to server, that's proxy request
|
||
|
# proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
|
||
|
# proxy_set_header X-Real-IP $remote_addr;
|
||
|
|
||
|
location /hromadskeradio.org/stream {
|
||
|
proxy_pass http://stream.hromadskeradio.org:8000/stream-ps-hi;
|
||
|
}
|
||
|
}
|