the log path is not under the paths in settings.NginxSettings.LogDirWhiteList
renziyou opened this issue · comments
如果你需要同时记录日志到文件和 stderr 中,应该在 nginx 配置文件中配置
error_log /path/to/error.log;
error_log stderr;
然后 nginx-ui 的配置文件中指定错误日志为 /path/to/error.log
。