mirror of
https://github.com/QYG2297248353/appstore-1panel.git
synced 2024-11-11 06:46:55 +08:00
a4ae036e70
* chore(deps): update openresty/openresty docker tag to v1.21.4.3 * Update app version [skip ci] --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: github-action update-app-version <githubaction@githubaction.com>
18 lines
299 B
Plaintext
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;
|
|
} |