Files
dokku/plugins/nginx-vhosts/templates/validate.conf.sigil
Jose Diaz-Gonzalez 54ef6514d5 fix: turn off error logging for validate config
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.
2019-03-26 17:10:32 -04:00

7 lines
115 B
Plaintext

events { worker_connections 768; }
http {
access_log off;
error_log /dev/null;
include {{ $.NGINX_CONF }};
}