AFFiNE/.github/deployment/front/affine.nginx.conf

14 lines
209 B
Plaintext
Raw Normal View History

2023-06-27 12:23:19 +03:00
server {
listen 8080;
root /app/dist;
location / {
try_files $uri $uri/index.html $uri.html =404;
2023-06-27 12:23:19 +03:00
}
error_page 404 /404.html;
location = /404.html {
internal;
}
}