initial commit

This commit is contained in:
2025-11-26 09:50:45 +00:00
commit 613dc0e9d0
8 changed files with 68 additions and 0 deletions

19
nginx.conf Normal file
View File

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