mirror of
https://github.com/dokku/dokku.git
synced 2026-05-18 13:15:19 +02:00
This will allow validation to work if the default logging locations cannot be written to but the configuration is otherwise okay. This will be the case for users with custom nginx configurations that log to other places, such as syslog.
7 lines
115 B
Plaintext
7 lines
115 B
Plaintext
events { worker_connections 768; }
|
|
http {
|
|
access_log off;
|
|
error_log /dev/null;
|
|
include {{ $.NGINX_CONF }};
|
|
}
|