Files
AFFiNE-Mirror/.github/deployment/front/affine.nginx.conf
T
2024-06-18 06:01:13 +00:00

18 lines
243 B
Plaintext

server {
listen 8080;
root /app;
location /admin {
try_files $uri $uri/ /admin/index.html;
}
location / {
try_files $uri $uri/ /dist/index.html;
}
error_page 404 /404.html;
location = /404.html {
internal;
}
}