You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
PR #184 changed the priority of the vhost file fragments, so the templates will be combined in this order when SSL vhost is used (first number is the priority):
001: nginx/vhost/vhost_header.erb
300: nginx/vhost/vhost_ssl_header.erb
699: nginx/vhost/vhost_footer.erb
999: nginx/vhost/vhost_ssl_footer.erb
The server directive and the relevant closing braces are now:
#vhost_header.erb
server {
#vhost_ssl_header.erb
server {
#vhost_footer.erb
}
#vhost_ssl_footer
}
This creates a nested server directive which is invalid.