mirror of
https://github.com/YunoHost/yunohost.git
synced 2024-09-03 20:06:10 +02:00
Disabling http2 for now as it's causing weird issues with curl
This commit is contained in:
parent
cc4a2f2f2e
commit
25bd5648a7
1 changed files with 5 additions and 2 deletions
|
@ -16,8 +16,11 @@ server {
|
||||||
}
|
}
|
||||||
|
|
||||||
server {
|
server {
|
||||||
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 http2;
|
||||||
|
listen 443 ssl;
|
||||||
|
listen [::]:443 ssl;
|
||||||
server_name {{ domain }};
|
server_name {{ domain }};
|
||||||
|
|
||||||
ssl_certificate /etc/yunohost/certs/{{ domain }}/crt.pem;
|
ssl_certificate /etc/yunohost/certs/{{ domain }}/crt.pem;
|
||||||
|
|
Loading…
Add table
Reference in a new issue