Commit c95d440c authored by nimrod's avatar nimrod
Browse files

Web proxy: Update the http2 directive.

It's not part of the listen directive anymore, it's now a separate
directive.
parent f4ade9c1
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -16,8 +16,9 @@ server {
}

server {
    listen      443 ssl http2;
    listen      [::]:443 ssl http2;
    listen      443 ssl;
    listen      [::]:443 ssl;
    http2       on;
    server_name auth.shore.co.il;
    include     snippets/robots-disallow-all.conf;
    include     snippets/ads-txt.conf;
+3 −2
Original line number Diff line number Diff line
@@ -13,8 +13,9 @@ server {
}

server {
    listen      443 ssl http2;
    listen      [::]:443 ssl http2;
    listen      443 ssl;
    listen      [::]:443 ssl;
    http2       on;
    server_name code.shore.co.il;
    include     snippets/robots-disallow-all.conf;
    include     snippets/ads-txt.conf;
+3 −2
Original line number Diff line number Diff line
@@ -13,8 +13,9 @@ server {
}

server {
    listen      443 ssl http2;
    listen      [::]:443 ssl http2;
    listen      443 ssl;
    listen      [::]:443 ssl;
    http2       on;
    server_name git.shore.co.il;
    include     snippets/robots-allow-all.conf;
    include     snippets/ads-txt.conf;
+3 −2
Original line number Diff line number Diff line
@@ -13,8 +13,9 @@ server {
}

server {
    listen      443 ssl http2;
    listen      [::]:443 ssl http2;
    listen      443 ssl;
    listen      [::]:443 ssl;
    http2       on;
    server_name lam.shore.co.il;
    include     snippets/robots-disallow-all.conf;
    include     snippets/ads-txt.conf;
+3 −2
Original line number Diff line number Diff line
@@ -10,8 +10,9 @@ server {
}

server {
    listen                      443 ssl http2;
    listen                      [::]:443 ssl http2;
    listen                      443 ssl;
    listen                      [::]:443 ssl;
    http2                       on;
    server_name                 mta-sts.shore.co.il mta-sts.nehe.sr;
    root                        /var/www/mail.shore.co.il/;
    include                     snippets/robots-disallow-all.conf;
Loading