test
Some checks failed
Build and Push Docker Image / build (push) Failing after 31s

This commit is contained in:
mcbtaguiad
2026-01-19 21:31:03 +08:00
commit ec77f4121f
2499 changed files with 1106308 additions and 0 deletions

22
nginx.conf Executable file
View File

@@ -0,0 +1,22 @@
events {
worker_connections 1024;
}
http {
include mime.types;
sendfile on;
server {
listen 80;
listen [::]:80;
resolver 127.0.0.11;
autoindex off;
server_name _;
server_tokens off;
root /app/;
gzip_static on;
}
}