HLS streaming from OBS with NDI plugin
Nelze vybrat více než 25 témat
Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
|
- server {
- ssl on;
- listen 443 ssl http2;
- listen [::]:443 ssl http2;
- server_name upstream.example.org;
- ssl_certificate /etc/ssl/org.example.upstream.crt;
- ssl_certificate_key /etc/ssl/org.example.upstream.pem;
-
- root /srv/www/stream/;
- access_log /var/log/nginx/org.example.upstream.stream.log;
- error_log /var/log/nginx/org.example.upstream.error.log;
- index index.m3u8;
- client_max_body_size 20M;
-
- more_set_headers "Access-Control-Allow-Origin: *" always;
- }
|