2022-12-29 21:05:47 +00:00
|
|
|
server {
|
|
|
|
listen 80;
|
|
|
|
server_name _;
|
2024-05-07 21:58:13 +00:00
|
|
|
|
|
|
|
location ~* \.js$ {
|
|
|
|
root /usr/share/nginx/html;
|
|
|
|
try_files $uri $uri/ /fallback.js;
|
|
|
|
}
|
2022-12-29 21:05:47 +00:00
|
|
|
|
|
|
|
location / {
|
|
|
|
root /usr/share/nginx/html;
|
|
|
|
index index.html index.htm;
|
|
|
|
try_files $uri $uri/ /index.html;
|
|
|
|
}
|
|
|
|
|
|
|
|
root /usr/share/nginx/html;
|
|
|
|
}
|