mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-13 03:09:51 +03:00
15 lines
501 B
Diff
15 lines
501 B
Diff
# Fix the deprecated call of http2 as listen parameter
|
|
--- a/usr/share/grommunio-common/nginx.conf
|
|
+++ b/usr/share/grommunio-common/nginx.conf
|
|
@@ -51,8 +51,9 @@
|
|
|
|
server {
|
|
server_name _;
|
|
- listen [::]:443 ssl http2;
|
|
- listen 443 ssl http2;
|
|
+ listen [::]:443 ssl default_server;
|
|
+ listen 443 ssl default_server;
|
|
+ http2 on;
|
|
include /etc/grommunio-common/nginx/ssl_*.conf;
|
|
include /usr/share/grommunio-common/nginx/ssl_params.conf;
|
|
include /usr/share/grommunio-common/nginx/proxy_params.conf;
|