Skip to content
Snippets Groups Projects
Commit 3acf5fab authored by Till Brehm's avatar Till Brehm
Browse files

Fixed: #4307 The new LE ssl cert paths introduced in ISPConfig 3.1.1 where not...

Fixed: #4307 The new LE ssl cert paths introduced in ISPConfig 3.1.1 where not set in the nginx_vhost.conf.master
parent b62d0810
No related branches found
No related tags found
No related merge requests found
......@@ -12,8 +12,8 @@ server {
<tmpl_if name='ipv6_enabled'>
listen [<tmpl_var name='ipv6_address'>]:<tmpl_var name='https_port'> ssl{tmpl_if name='enable_http2' op='==' value='y'} http2{/tmpl_if}{tmpl_if name='enable_spdy' op='==' value='y'} spdy{/tmpl_if};
</tmpl_if>
ssl_certificate <tmpl_var name='document_root'>/ssl/<tmpl_var name='ssl_domain'>.crt;
ssl_certificate_key <tmpl_var name='document_root'>/ssl/<tmpl_var name='ssl_domain'>.key;
ssl_certificate <tmpl_var name='ssl_crt_file'>;
ssl_certificate_key <tmpl_var name='ssl_key_file'>;
</tmpl_if>
server_name <tmpl_var name='domain'> <tmpl_var name='alias'>;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment