Add error_log

This commit is contained in:
Oliver Davies 2015-12-28 13:09:41 +00:00
parent 1f99c72698
commit 3de8c915a0
1 changed files with 3 additions and 0 deletions

View File

@ -12,6 +12,9 @@ server {
{% if vhost.access_log is defined %}
access_log {{ vhost.access_log }};
{% endif %}
{% if vhost.error_log is defined %}
error_log {{ vhost.error_log }} error;
{% endif %}
{% if vhost.return is defined %}
return {{ vhost.return }};