Files
AFFiNE-Mirror/.github/deployment/front/affine.nginx.conf
2023-06-29 14:02:46 +00:00

14 lines
209 B
Plaintext

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