Set rtmp log level to info. Add http access_log as combined. Both log to stdout (since this is docker) instead of file.

This commit is contained in:
Alf 2019-06-03 22:42:39 -07:00
parent 948795b908
commit ba10572bce
1 changed files with 3 additions and 1 deletions

View File

@ -1,6 +1,6 @@
daemon off;
error_log logs/error.log debug;
error_log /dev/stdout info;
events {
worker_connections 1024;
@ -41,6 +41,8 @@ rtmp {
}
http {
access_log /dev/stdout combined;
ssl_ciphers HIGH:!aNULL:!MD5;
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
ssl_session_cache shared:SSL:10m;