vhost: add a blank line at the end of the header template

Without it, we get something like this:

```
  error_log             /var/log/nginx/my_error.log;  location / {
    root      /var/www/html;
  }
```

With this commit, we get this:

```
  error_log             /var/log/nginx/my_error.log;

  location / {
    root      /var/www/html;
  }
```
This commit is contained in:
Vincent Bernat 2014-10-22 22:22:46 +02:00
parent db15848deb
commit 004ee68b89

View file

@ -93,4 +93,5 @@ server {
<% end -%>
access_log <%= @access_log_real %>;
error_log <%= @error_log_real %>;
error_log <%= @error_log_real %>;