Update nginx/nginx.conf
This commit is contained in:
parent
ba87ab0064
commit
b3912b4e45
1 changed files with 9 additions and 0 deletions
|
@ -56,5 +56,14 @@ http {
|
||||||
return 301 https://$host$request_uri;
|
return 301 https://$host$request_uri;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
# default HTTPS server
|
||||||
|
server {
|
||||||
|
listen 443 ssl default_server;
|
||||||
|
listen 443 quic reuseport default_server;
|
||||||
|
listen [::]:443 ssl default_server;
|
||||||
|
|
||||||
|
return 200;
|
||||||
|
}
|
||||||
|
|
||||||
include /etc/nginx/conf.d/*.conf;
|
include /etc/nginx/conf.d/*.conf;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue