mirror of
https://github.com/NginxProxyManager/nginx-proxy-manager.git
synced 2025-08-03 16:03:38 +00:00
22 lines
492 B
Plaintext
22 lines
492 B
Plaintext
server {
|
|
listen 81 ssl http2;
|
|
listen 81 quic;
|
|
|
|
listen [::]:81 ssl http2;
|
|
listen [::]:81 quic;
|
|
|
|
server_name "";
|
|
return 444;
|
|
|
|
include conf.d/include/brotli.conf;
|
|
include conf.d/include/force-tls.conf;
|
|
include conf.d/include/tls-ciphers.conf;
|
|
include conf.d/include/block-exploits.conf;
|
|
add_header alt-svc 'h3=":443"; ma=86400, h3-29=":443"; ma=86400';
|
|
http3 on;
|
|
|
|
#ssl_certificate ;
|
|
#ssl_certificate_key ;
|
|
#ssl_trusted_certificate ;
|
|
}
|