56 lines
977 B
Nginx Configuration File
Executable File
56 lines
977 B
Nginx Configuration File
Executable File
|
|
user www-data;
|
|
worker_processes auto;
|
|
pid /run/nginx.pid;
|
|
include /etc/nginx/modules-enabled/*.conf;
|
|
|
|
events {
|
|
worker_connections 2048;
|
|
multi_accept on;
|
|
}
|
|
|
|
rtmp {
|
|
server {
|
|
listen 1935;
|
|
chunk_size 4096;
|
|
|
|
application shree {
|
|
live on;
|
|
record off;
|
|
meta off;
|
|
wait_video on;
|
|
|
|
|
|
hls on;
|
|
hls_path /var/www/html/hls/shree;
|
|
hls_fragment 3;
|
|
hls_playlist_length 60;
|
|
|
|
|
|
dash on;
|
|
dash_path /var/www/html/dash/shree;
|
|
|
|
}
|
|
}
|
|
}
|
|
|
|
http {
|
|
sendfile on;
|
|
tcp_nopush on;
|
|
types_hash_max_size 2048;
|
|
|
|
include /etc/nginx/mime.types;
|
|
default_type application/octet-stream;
|
|
|
|
ssl_protocols TLSv1 TLSv1.1 TLSv1.2 TLSv1.3; # Dropping SSLv3, ref: POODLE
|
|
ssl_prefer_server_ciphers on;
|
|
|
|
access_log /var/log/nginx/access.log;
|
|
error_log /var/log/nginx/error.log warn;
|
|
|
|
gzip on;
|
|
include /etc/nginx/conf.d/*.conf;
|
|
include /etc/nginx/sites-enabled/*;
|
|
|
|
}
|
|
|