Skip to content

Commit 3acf5fa

Browse files
author
Till Brehm
committed
Fixed: #4307 The new LE ssl cert paths introduced in ISPConfig 3.1.1 where not set in the nginx_vhost.conf.master
1 parent b62d081 commit 3acf5fa

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

server/conf/nginx_vhost.conf.master

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,8 @@ server {
1212
<tmpl_if name='ipv6_enabled'>
1313
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};
1414
</tmpl_if>
15-
ssl_certificate <tmpl_var name='document_root'>/ssl/<tmpl_var name='ssl_domain'>.crt;
16-
ssl_certificate_key <tmpl_var name='document_root'>/ssl/<tmpl_var name='ssl_domain'>.key;
15+
ssl_certificate <tmpl_var name='ssl_crt_file'>;
16+
ssl_certificate_key <tmpl_var name='ssl_key_file'>;
1717
</tmpl_if>
1818

1919
server_name <tmpl_var name='domain'> <tmpl_var name='alias'>;

0 commit comments

Comments
 (0)