mirror of
https://github.com/NginxProxyManager/nginx-proxy-manager.git
synced 2025-08-02 15:33:32 +00:00
18 lines
365 B
Plaintext
18 lines
365 B
Plaintext
server {
|
|
http3 off;
|
|
listen 82 ssl;
|
|
listen [::]:82 ssl;
|
|
|
|
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;
|
|
|
|
#ssl_certificate ;
|
|
#ssl_certificate_key ;
|
|
#ssl_trusted_certificate ;
|
|
}
|