first commit

This commit is contained in:
2025-08-25 14:22:20 +07:00
commit cf30da5b1e
4 changed files with 53 additions and 0 deletions

13
nginx.conf Normal file
View File

@@ -0,0 +1,13 @@
events {}
http {
server {
listen 80;
server_name localhost;
location / {
proxy_pass http://kosma-3x-ui:2053/;
}
}
}