add docker setting

This commit is contained in:
poturaevpetr
2026-04-22 19:18:09 +05:00
parent 754722c5ae
commit c7dbbd85f9
4 changed files with 53 additions and 0 deletions
+14
View File
@@ -0,0 +1,14 @@
server {
listen 80;
server_name localhost;
root /usr/share/nginx/html;
index index.html;
gzip on;
gzip_types text/plain text/css application/javascript application/json image/svg+xml;
gzip_min_length 256;
location / {
try_files $uri $uri/ /index.html;
}
}