Commit 1cfa80b0 authored by nimrod's avatar nimrod
Browse files

Nginx: Update the http2 directive.

It's no longer a part of the listen directive but a standalone one.
parent 67bf7923
Loading
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -7,8 +7,9 @@ server {
}

server {
    listen      443 ssl http2 default_server;
    listen      [::]:443 ssl http2 default_server;
    listen      443 ssl default_server;
    listen      [::]:443 ssl default_server;
    http2       on;
    include     snippets/ssl-legacy.conf;
    location    / { return 301 https://www.shore.co.il$request_uri; }
}