mirror of
https://github.com/bluenviron/mediamtx
synced 2025-01-22 06:53:40 +00:00
24 lines
298 B
Nginx Configuration File
24 lines
298 B
Nginx Configuration File
|
|
||
|
pid /run/nginx.pid;
|
||
|
worker_processes auto;
|
||
|
pcre_jit on;
|
||
|
|
||
|
error_log /dev/null;
|
||
|
|
||
|
include /etc/nginx/modules/*.conf;
|
||
|
|
||
|
events {
|
||
|
worker_connections 20000;
|
||
|
}
|
||
|
|
||
|
rtmp {
|
||
|
server {
|
||
|
listen 1935;
|
||
|
access_log /dev/null;
|
||
|
|
||
|
application stream {
|
||
|
live on;
|
||
|
}
|
||
|
}
|
||
|
}
|