1
0
Fork 0
mirror of https://github.com/YunoHost/yunohost.git synced 2025-09-17 22:08:33 +02:00

Disabling http2 for now as it's causing weird issues with curl

This commit is contained in:
Alexandre Aubin 2018-05-02 18:16:08 +02:00
commit 25bd5648a7

View file

@ -16,8 +16,11 @@ server {
}
server {
listen 443 ssl http2;
listen [::]:443 ssl http2;
# Disabling http2 for now as it's causing weird issues with curl
#listen 443 ssl http2;
#listen [::]:443 ssl http2;
listen 443 ssl;
listen [::]:443 ssl;
server_name {{ domain }};
ssl_certificate /etc/yunohost/certs/{{ domain }}/crt.pem;