You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
288 B
21 lines
288 B
2 years ago
|
stream {
|
||
|
|
||
|
upstream turn_backend {
|
||
|
server 89.163.204.197:3478;
|
||
|
}
|
||
|
|
||
|
server {
|
||
|
listen 443 udp;
|
||
|
listen [::]:443 udp;
|
||
|
|
||
|
ssl_preread on;
|
||
|
proxy_pass turn_backend;
|
||
|
|
||
|
# Increase buffer to serve video
|
||
|
proxy_buffer_size 10m;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
|
||
|
|