dockrfile wasm

This commit is contained in:
mmrbnjd
2025-09-04 15:34:30 +03:30
parent 2f66807bc1
commit 1ca1b4f1eb
6 changed files with 113 additions and 2 deletions

View File

@@ -0,0 +1,21 @@
server {
listen 5089;
server_name localhost;
root /usr/share/nginx/html;
index index.html;
location / {
try_files $uri $uri/ /index.html;
}
location ~* \.(?:ico|css|js|gif|jpe?g|png|woff2?|eot|ttf|svg)$ {
expires 6M;
access_log off;
add_header Cache-Control "public";
}
location = /index.html {
add_header Cache-Control "no-store, no-cache, must-revalidate, proxy-revalidate, max-age=0";
}
}