Also disabling httpt2 in yunohost_admin.conf

This commit is contained in:
Alexandre Aubin 2018-05-08 05:50:39 +02:00
parent a9b931b622
commit c75a3f1b44

View file

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