Initial commit with all files

This commit is contained in:
2025-05-02 12:48:13 +00:00
commit 1b8c572d89
29 changed files with 4100 additions and 0 deletions

20
nginx.conf Normal file
View File

@@ -0,0 +1,20 @@
server {
listen 80;
server_name localhost;
root /usr/share/nginx/html;
index index.html;
location / {
rewrite ^/en/(.*)$ /lang/en/$1 last;
rewrite ^/ru/(.*)$ /lang/ru/$1 last;
rewrite ^/es/(.*)$ /lang/es/$1 last;
rewrite ^/$ /en/ last;
}
location ~* \.(eot|ttf|woff|woff2)$ {
add_header Access-Control-Allow-Origin *;
expires 1y;
add_header Cache-Control "public";
}
}