appstore-1panel/apps/openresty/versions/1.21.4/conf/conf.d/00.default.conf

17 lines
256 B
Plaintext
Raw Normal View History

2023-03-14 12:44:36 +08:00
map "" $empty {
default "";
}
server
{
listen 80;
listen 443 ssl http2;
server_name _;
ssl_ciphers aNULL;
ssl_certificate data:$empty;
ssl_certificate_key data:$empty;
index 404.html;
root /usr/share/nginx/html;
}