60 lines
1.1 KiB
Text
60 lines
1.1 KiB
Text
# CLEARNET
|
|
server {
|
|
access_log /var/log/nginx/stream.access.log;
|
|
error_log /var/log/nginx/stream.error.log;
|
|
server_name stream.zzls.xyz;
|
|
include configs/general.conf;
|
|
|
|
location /hls/ {
|
|
types { application/vnd.apple.mpegurl m3u8; video/mp2t ts; }
|
|
root /tmp/;
|
|
}
|
|
|
|
location /dash/ {
|
|
types { application/dash+xml mpd; audio/mp4 m4a; video/mp4 m4v; }
|
|
root /tmp/;
|
|
}
|
|
|
|
location = /streams {
|
|
rtmp_stat all;
|
|
rtmp_stat_stylesheet /stat.xsl;
|
|
}
|
|
|
|
location /stat.xsl {
|
|
root /var/www/stream/public/;
|
|
}
|
|
|
|
location /viewers/ {
|
|
default_type text/plain;
|
|
add_header Content-Type "text/plain";
|
|
add_header Refresh "30; $request_uri";
|
|
root /var/www/stream/public/;
|
|
try_files $uri /viewers.txt =404;
|
|
}
|
|
|
|
location /posters/ {
|
|
root /var/www/stream/public/;
|
|
try_files $uri /offline.png =404;
|
|
}
|
|
|
|
location / {
|
|
root /var/www/stream/public/;
|
|
try_files $uri $uri/hls.html =404;
|
|
}
|
|
|
|
# QUIC
|
|
include config/http3.conf;
|
|
|
|
listen 443 ssl;
|
|
http2 on;
|
|
include configs/ssl.conf;
|
|
}
|
|
|
|
server {
|
|
if ($host = stream.zzls.xyz) {
|
|
return 301 https://$host$request_uri;
|
|
}
|
|
listen 80;
|
|
server_name stream.zzls.xyz;
|
|
return 404;
|
|
}
|