log interface

This commit is contained in:
Devaev Maxim
2018-10-28 06:51:51 +03:00
parent 1f54776ce0
commit ab342111d0
12 changed files with 133 additions and 16 deletions

View File

@@ -4,6 +4,11 @@ kvmd:
port: 8081
heartbeat: 3.0
log:
services:
- kvmd.service
- kvmd-tc358743.service
hid:
pinout:
reset: 4
@@ -66,8 +71,7 @@ logging:
console:
(): logging.Formatter
style: "{"
datefmt: "%H:%M:%S"
format: "[{asctime}] {name:20.20} {levelname:>7} --- {message}"
format: "{name:20.20} {levelname:>7} --- {message}"
handlers:
console:

View File

@@ -4,6 +4,11 @@ kvmd:
port: 8081
heartbeat: 3.0
log:
services:
- kvmd.service
- kvmd-tc358743.service
hid:
pinout:
reset: 4
@@ -69,8 +74,7 @@ logging:
console:
(): logging.Formatter
style: "{"
datefmt: "%H:%M:%S"
format: "[{asctime}] {name:20.20} {levelname:>7} --- {message}"
format: "{name:20.20} {levelname:>7} --- {message}"
handlers:
console:

View File

@@ -109,6 +109,16 @@ http {
proxy_request_buffering off;
}
location /kvmd/log {
rewrite /kvmd/log /log break;
proxy_pass http://kvmd;
include /etc/nginx/proxy-params.conf;
proxy_read_timeout 7d;
postpone_output 0;
proxy_buffering off;
proxy_ignore_headers X-Accel-Buffering;
}
location /kvmd {
rewrite /kvmd/?(.*) /$1 break;
proxy_pass http://kvmd;