mirror of
https://github.com/toeverything/AFFiNE.git
synced 2024-12-18 14:01:44 +03:00
14 lines
210 B
Plaintext
14 lines
210 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;
|
||
|
}
|
||
|
}
|