mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-07-16 17:46:18 +08:00
18 lines
243 B
Plaintext
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;
|
|
}
|
|
}
|