dockerize it

This commit is contained in:
2025-07-25 23:06:57 +03:00
parent d0f99eba4a
commit 4c29f65c32
7 changed files with 130 additions and 103 deletions

16
nginx.conf Normal file
View File

@@ -0,0 +1,16 @@
# nginx.conf
server {
listen 80;
server_name _;
root /usr/share/nginx/html;
index index.html;
add_header X-Frame-Options "SAMEORIGIN";
add_header X-Content-Type-Options "nosniff";
add_header Referrer-Policy "no-referrer-when-downgrade";
location / {
try_files $uri $uri/ =404;
}
}