Skip to content
Snippets Groups Projects
Commit c05d5770 authored by Marius Burkard's avatar Marius Burkard
Browse files

Merge branch '6065-enable-http-2-for-the-panel-nginx' into 'develop'

Resolve "Enable http/2 for the panel (nginx)"

Closes #6065

See merge request ispconfig/ispconfig3!1421
parents 2e0f2d25 21db72aa
No related branches found
No related tags found
No related merge requests found
server {
listen {apps_vhost_ip}{apps_vhost_port} {ssl_on};
listen [::]:{apps_vhost_port} {ssl_on} ipv6only=on;
listen {apps_vhost_ip}{apps_vhost_port} {ssl_on} http2;
listen [::]:{apps_vhost_port} {ssl_on} ipv6only=on http2;
{ssl_comment}ssl_protocols TLSv1.2;
{ssl_comment}ssl_certificate /usr/local/ispconfig/interface/ssl/ispserver.crt;
......
server {
listen {vhost_port} {ssl_on};
listen [::]:{vhost_port} {ssl_on} ipv6only=on;
listen {vhost_port} {ssl_on} http2;
listen [::]:{vhost_port} {ssl_on} ipv6only=on http2;
{ssl_comment}ssl_protocols TLSv1.2;
{ssl_comment}ssl_certificate /usr/local/ispconfig/interface/ssl/ispserver.crt;
......
server {
listen {apps_vhost_ip}{apps_vhost_port} {ssl_on};
listen [::]:{apps_vhost_port} {ssl_on} ipv6only=on;
listen {apps_vhost_ip}{apps_vhost_port} {ssl_on} http2;
listen [::]:{apps_vhost_port} {ssl_on} ipv6only=on http2;
{ssl_comment}ssl_protocols TLSv1.2;
{ssl_comment}ssl_certificate /usr/local/ispconfig/interface/ssl/ispserver.crt;
......
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