1 Star 2 Fork 2

binave / nginx-rtmp

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
nginx.conf 1.14 KB
一键复制 编辑 原始数据 按行查看 历史
root 提交于 2022-01-10 23:31 . fix move
user nginx;
worker_processes auto;
error_log /var/log/nginx-error.log warn;
pid /var/run/nginx.pid;
# load_module /usr/lib/nginx/modules/ngx_http_perl_module.so;
events {
worker_connections 1024;
}
http {
include mime.types;
default_type application/octet-stream;
server_tokens off;
log_format main 'HTTP $remote_addr - $remote_user [$time_local] "$request" '
'$status $body_bytes_sent "$http_referer" '
'"$http_user_agent" "$http_x_forwarded_for"';
access_log /var/log/nginx-http-access.log main;
sendfile on;
#tcp_nopush on;
keepalive_timeout 65;
#gzip on;
include conf.d/http.*.conf;
include http.conf.d/*.conf;
}
rtmp {
log_format main 'RTMP $remote_addr - [$time_local]';
access_log /var/log/nginx-rtmp-access.log main;
include conf.d/rtmp.*.conf;
include rtmp.conf.d/*.conf;
}
stream {
log_format main 'STREAM $remote_addr - [$time_local] "$upstream_addr" $status';
access_log /var/log/nginx-stream-access.log main;
include conf.d/stream.*.conf;
include stream.conf.d/*.conf;
}
1
https://gitee.com/binave/nginx-rtmp.git
git@gitee.com:binave/nginx-rtmp.git
binave
nginx-rtmp
nginx-rtmp
develop

搜索帮助