@drumee/setup-infra 1.0.22 → 1.0.23

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@drumee/setup-infra",
3
- "version": "1.0.22",
3
+ "version": "1.0.23",
4
4
  "description": "Drumee Infrastructure Setup Utilities",
5
5
  "main": "index.js",
6
6
  "scripts": {
@@ -12,7 +12,7 @@ proxy_cache_path <%= cache_dir %>/<%= public_domain %> levels=1:2 keys_zone=<%=
12
12
  server {
13
13
  listen <%= public_http_port %>;
14
14
  listen [::]:<%= public_http_port %>;
15
- http2 on;
15
+ # http2 on;
16
16
  server_name <%= public_domain %>;
17
17
  location / {
18
18
  return 301 https://$host$request_uri;
@@ -21,7 +21,7 @@ server {
21
21
  server {
22
22
  listen <%= public_https_port %> ssl;
23
23
  listen [::]:<%= public_https_port %> ssl;
24
- http2 on;
24
+ # http2 on;
25
25
  #
26
26
  root <%= server_dir %>;
27
27
  server_name <%= public_domain %>;
@@ -12,7 +12,7 @@ proxy_cache_path <%= cache_dir %>/<%= private_domain %> levels=1:2 keys_zone=<%=
12
12
  server {
13
13
  listen <%= public_http_port %>;
14
14
  listen [::]:<%= public_http_port %>;
15
- http2 on;
15
+ # http2 on;
16
16
  server_name <%= private_domain %>;
17
17
  location / {
18
18
  return 301 https://$host$request_uri;
@@ -21,7 +21,7 @@ server {
21
21
  server {
22
22
  listen <%= public_https_port %> ssl;
23
23
  listen [::]:<%= public_https_port %> ssl;
24
- http2 on;
24
+ # http2 on;
25
25
  #
26
26
  root <%= server_dir %>;
27
27
  server_name <%= private_domain %>;
@@ -14,7 +14,7 @@ map $http_upgrade $connection_upgrade {
14
14
  server {
15
15
  listen <%= public_http_port %> default_server;
16
16
  listen [::]:<%= public_http_port %> default_server;
17
- http2 on;
17
+ # http2 on;
18
18
  server_name *.<%= jitsi_private_domain %>;
19
19
  include /etc/jitsi/meet.private.conf;
20
20
  }
@@ -22,7 +22,7 @@ server {
22
22
  server {
23
23
  listen <%= public_https_port %> ssl;
24
24
  listen [::]:<%= public_https_port %> ssl;
25
- http2 on;
25
+ # http2 on;
26
26
  server_name <%= jitsi_private_domain %>;
27
27
  include /etc/jitsi/ssl.private.conf;
28
28
  include /etc/jitsi/meet.private.conf;
@@ -14,7 +14,7 @@ map $http_upgrade $connection_upgrade {
14
14
  server {
15
15
  listen <%= public_http_port %> default_server;
16
16
  listen [::]:<%= public_http_port %> default_server;
17
- http2 on;
17
+ # http2 on;
18
18
  server_name *.<%= jitsi_public_domain %>;
19
19
  include /etc/jitsi/meet.public.conf;
20
20
  }
@@ -22,7 +22,7 @@ server {
22
22
  server {
23
23
  listen <%= public_https_port %> ssl ;
24
24
  listen [::]:<%= public_https_port %> ssl;
25
- http2 on;
25
+ # http2 on;
26
26
  server_name <%= jitsi_public_domain %>;
27
27
  include /etc/jitsi/ssl.public.conf;
28
28
  include /etc/jitsi/meet.public.conf;