update dev nginx conf parameter http2 to new syntax

This commit is contained in:
schlagmichdoch 2024-08-16 16:03:25 +02:00
parent a68cd75b71
commit 703894e309

View file

@ -19,7 +19,8 @@ server {
}
server {
listen 443 ssl http2;
listen 443 ssl;
http2 on;
ssl_certificate /etc/ssl/certs/pairdrop-dev.crt;
ssl_certificate_key /etc/ssl/certs/pairdrop-dev.key;
@ -36,6 +37,6 @@ server {
alias /etc/ssl/certs/pairdropCA.crt;
}
# To allow POST on static pages
error_page 405 =200 $uri;
error_page 405 =200 $uri;
}