Skip to content
Snippets Groups Projects
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
No related branches found
No related tags found
No related merge requests found
Showing
with 60 additions and 40 deletions
...@@ -16,8 +16,9 @@ server { ...@@ -16,8 +16,9 @@ server {
} }
server { server {
listen 443 ssl http2; listen 443 ssl;
listen [::]:443 ssl http2; listen [::]:443 ssl;
http2 on;
server_name auth.shore.co.il; server_name auth.shore.co.il;
include snippets/robots-disallow-all.conf; include snippets/robots-disallow-all.conf;
include snippets/ads-txt.conf; include snippets/ads-txt.conf;
......
...@@ -13,8 +13,9 @@ server { ...@@ -13,8 +13,9 @@ server {
} }
server { server {
listen 443 ssl http2; listen 443 ssl;
listen [::]:443 ssl http2; listen [::]:443 ssl;
http2 on;
server_name code.shore.co.il; server_name code.shore.co.il;
include snippets/robots-disallow-all.conf; include snippets/robots-disallow-all.conf;
include snippets/ads-txt.conf; include snippets/ads-txt.conf;
......
...@@ -13,8 +13,9 @@ server { ...@@ -13,8 +13,9 @@ server {
} }
server { server {
listen 443 ssl http2; listen 443 ssl;
listen [::]:443 ssl http2; listen [::]:443 ssl;
http2 on;
server_name git.shore.co.il; server_name git.shore.co.il;
include snippets/robots-allow-all.conf; include snippets/robots-allow-all.conf;
include snippets/ads-txt.conf; include snippets/ads-txt.conf;
......
...@@ -13,8 +13,9 @@ server { ...@@ -13,8 +13,9 @@ server {
} }
server { server {
listen 443 ssl http2; listen 443 ssl;
listen [::]:443 ssl http2; listen [::]:443 ssl;
http2 on;
server_name lam.shore.co.il; server_name lam.shore.co.il;
include snippets/robots-disallow-all.conf; include snippets/robots-disallow-all.conf;
include snippets/ads-txt.conf; include snippets/ads-txt.conf;
......
...@@ -10,8 +10,9 @@ server { ...@@ -10,8 +10,9 @@ server {
} }
server { server {
listen 443 ssl http2; listen 443 ssl;
listen [::]:443 ssl http2; listen [::]:443 ssl;
http2 on;
server_name mta-sts.shore.co.il mta-sts.nehe.sr; server_name mta-sts.shore.co.il mta-sts.nehe.sr;
root /var/www/mail.shore.co.il/; root /var/www/mail.shore.co.il/;
include snippets/robots-disallow-all.conf; include snippets/robots-disallow-all.conf;
......
...@@ -13,8 +13,9 @@ server { ...@@ -13,8 +13,9 @@ server {
} }
server { server {
listen 443 ssl http2; listen 443 ssl;
listen [::]:443 ssl http2; listen [::]:443 ssl;
http2 on;
server_name matrix.shore.co.il; server_name matrix.shore.co.il;
include snippets/robots-disallow-all.conf; include snippets/robots-disallow-all.conf;
include snippets/ads-txt.conf; include snippets/ads-txt.conf;
......
...@@ -13,8 +13,9 @@ server { ...@@ -13,8 +13,9 @@ server {
} }
server { server {
listen 443 ssl http2; listen 443 ssl;
listen [::]:443 ssl http2; listen [::]:443 ssl;
http2 on;
server_name nextcloud.shore.co.il; server_name nextcloud.shore.co.il;
include snippets/robots-disallow-all.conf; include snippets/robots-disallow-all.conf;
include snippets/ads-txt.conf; include snippets/ads-txt.conf;
......
...@@ -13,8 +13,9 @@ server { ...@@ -13,8 +13,9 @@ server {
} }
server { server {
listen 443 ssl http2; listen 443 ssl;
listen [::]:443 ssl http2; listen [::]:443 ssl;
http2 on;
server_name notify.shore.co.il; server_name notify.shore.co.il;
include snippets/robots-disallow-all.conf; include snippets/robots-disallow-all.conf;
include snippets/ads-txt.conf; include snippets/ads-txt.conf;
......
...@@ -13,8 +13,9 @@ server { ...@@ -13,8 +13,9 @@ server {
} }
server { server {
listen 443 ssl http2; listen 443 ssl;
listen [::]:443 ssl http2; listen [::]:443 ssl;
http2 on;
server_name sogo.shore.co.il; server_name sogo.shore.co.il;
include snippets/robots-disallow-all.conf; include snippets/robots-disallow-all.conf;
include snippets/ads-txt.conf; include snippets/ads-txt.conf;
......
...@@ -13,8 +13,9 @@ server { ...@@ -13,8 +13,9 @@ server {
} }
server { server {
listen 443 ssl http2; listen 443 ssl;
listen [::]:443 ssl http2; listen [::]:443 ssl;
http2 on;
server_name vouch.shore.co.il; server_name vouch.shore.co.il;
include snippets/robots-disallow-all.conf; include snippets/robots-disallow-all.conf;
include snippets/ads-txt.conf; include snippets/ads-txt.conf;
......
...@@ -13,8 +13,9 @@ server { ...@@ -13,8 +13,9 @@ server {
} }
server { server {
listen 443 ssl http2; listen 443 ssl;
listen [::]:443 ssl http2; listen [::]:443 ssl;
http2 on;
server_name zpush.shore.co.il; server_name zpush.shore.co.il;
include snippets/robots-disallow-all.conf; include snippets/robots-disallow-all.conf;
include snippets/ads-txt.conf; include snippets/ads-txt.conf;
......
...@@ -13,8 +13,9 @@ server { ...@@ -13,8 +13,9 @@ server {
} }
server { server {
listen 443 ssl http2; listen 443 ssl;
listen [::]:443 ssl http2; listen [::]:443 ssl;
http2 on;
server_name kodi.shore.co.il; server_name kodi.shore.co.il;
include snippets/robots-disallow-all.conf; include snippets/robots-disallow-all.conf;
include snippets/ads-txt.conf; include snippets/ads-txt.conf;
......
...@@ -13,8 +13,9 @@ server { ...@@ -13,8 +13,9 @@ server {
} }
server { server {
listen 443 ssl http2; listen 443 ssl;
listen [::]:443 ssl http2; listen [::]:443 ssl;
http2 on;
server_name library.shore.co.il; server_name library.shore.co.il;
include snippets/robots-disallow-all.conf; include snippets/robots-disallow-all.conf;
include snippets/ads-txt.conf; include snippets/ads-txt.conf;
......
...@@ -13,8 +13,9 @@ server { ...@@ -13,8 +13,9 @@ server {
} }
server { server {
listen 443 ssl http2; listen 443 ssl;
listen [::]:443 ssl http2; listen [::]:443 ssl;
http2 on;
server_name transmission.shore.co.il; server_name transmission.shore.co.il;
include snippets/robots-disallow-all.conf; include snippets/robots-disallow-all.conf;
include snippets/ads-txt.conf; include snippets/ads-txt.conf;
......
...@@ -11,8 +11,9 @@ server { ...@@ -11,8 +11,9 @@ server {
} }
server { server {
listen 443 ssl http2; listen 443 ssl;
listen [::]:443 ssl http2; listen [::]:443 ssl;
http2 on;
server_name autoconfig.shore.co.il autoconfig.nehe.sr; server_name autoconfig.shore.co.il autoconfig.nehe.sr;
root /var/www/autoconfig.shore.co.il/; root /var/www/autoconfig.shore.co.il/;
include snippets/robots-allow-all.conf; include snippets/robots-allow-all.conf;
......
...@@ -13,8 +13,9 @@ server { ...@@ -13,8 +13,9 @@ server {
} }
server { server {
listen 443 ssl http2; listen 443 ssl;
listen [::]:443 ssl http2; listen [::]:443 ssl;
http2 on;
server_name elasticsearch.shore.co.il; server_name elasticsearch.shore.co.il;
include snippets/robots-disallow-all.conf; include snippets/robots-disallow-all.conf;
include snippets/ads-txt.conf; include snippets/ads-txt.conf;
......
...@@ -13,8 +13,9 @@ server { ...@@ -13,8 +13,9 @@ server {
} }
server { server {
listen 443 ssl http2; listen 443 ssl;
listen [::]:443 ssl http2; listen [::]:443 ssl;
http2 on;
server_name kibana.shore.co.il; server_name kibana.shore.co.il;
include snippets/robots-disallow-all.conf; include snippets/robots-disallow-all.conf;
include snippets/ads-txt.conf; include snippets/ads-txt.conf;
......
...@@ -12,8 +12,9 @@ server { ...@@ -12,8 +12,9 @@ server {
} }
server { server {
listen 443 ssl http2; listen 443 ssl;
listen [::]:443 ssl http2; listen [::]:443 ssl;
http2 on;
server_name myip.shore.co.il; server_name myip.shore.co.il;
include snippets/robots-disallow-all.conf; include snippets/robots-disallow-all.conf;
include snippets/ads-txt.conf; include snippets/ads-txt.conf;
......
...@@ -12,8 +12,9 @@ server { ...@@ -12,8 +12,9 @@ server {
} }
server { server {
listen 443 ssl http2; listen 443 ssl;
listen [::]:443 ssl http2; listen [::]:443 ssl;
http2 on;
server_name nehe.sr; server_name nehe.sr;
include snippets/robots-allow-all.conf; include snippets/robots-allow-all.conf;
include snippets/ads-txt.conf; include snippets/ads-txt.conf;
......
...@@ -12,8 +12,9 @@ server { ...@@ -12,8 +12,9 @@ server {
} }
server { server {
listen 443 ssl http2; listen 443 ssl;
listen [::]:443 ssl http2; listen [::]:443 ssl;
http2 on;
server_name nehes.co; server_name nehes.co;
include snippets/robots-allow-all.conf; include snippets/robots-allow-all.conf;
include snippets/ads-txt.conf; include snippets/ads-txt.conf;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment