mirror of
https://github.com/bluenviron/mediamtx
synced 2024-12-17 20:24:38 +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;
|
|
}
|
|
}
|
|
}
|