appstore-1panel/apps/openresty/1.21.4.2/conf/conf.d/00.default.conf
2023-10-23 14:57:18 +08:00

18 lines
299 B
Plaintext

map "" $empty {
default "";
}
server
{
listen 80;
listen 443 ssl http2;
server_name _;
ssl_ciphers aNULL;
ssl_certificate data:$empty;
ssl_certificate_key data:$empty;
ssl_protocols TLSv1.1 TLSv1.2 TLSv1.3;
index 404.html;
root /usr/share/nginx/html;
}