mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-02-11 11:58:41 +00:00
chore: fix redirect for static files (#7473)
This commit is contained in:
5
.github/deployment/front/affine.nginx.conf
vendored
5
.github/deployment/front/affine.nginx.conf
vendored
@@ -6,6 +6,11 @@ server {
|
||||
try_files $uri/index.html $uri/ $uri /admin/index.html;
|
||||
}
|
||||
|
||||
location ~ ^/(_plugin|assets|imgs|js|plugins|static)/ {
|
||||
root /app/dist/;
|
||||
try_files $uri $uri/ =404;
|
||||
}
|
||||
|
||||
location / {
|
||||
root /app/dist/;
|
||||
index index.html;
|
||||
|
||||
Reference in New Issue
Block a user