Skip to content

Commit 509a4aa

Browse files
author
Marius Burkard
committed
Merge branch 'bugfix/6047_Add-missing-http2-to-nginx-config-proxy-protocol' into 'develop'
Add missing http2 directive to HTTPS proxy protocol config in nginx vhost conf Closes #6047 See merge request ispconfig/ispconfig3!1406
2 parents d5aca6a + 4228524 commit 509a4aa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

server/conf/nginx_vhost.conf.master

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ server {
1515
listen <tmpl_var name='ip_address'>:<tmpl_var name='https_port'> ssl http2;
1616
<tmpl_if name='use_proxy_protocol' op='==' value='y'>
1717
<tmpl_if name='proxy_protocol_https' op='>' value='0'>
18-
listen <tmpl_var name='ip_address'>:<tmpl_var name='proxy_protocol_https'> ssl proxy_protocol;
18+
listen <tmpl_var name='ip_address'>:<tmpl_var name='proxy_protocol_https'> ssl http2 proxy_protocol;
1919
</tmpl_if>
2020
</tmpl_if>
2121

0 commit comments

Comments
 (0)