mirror of
https://github.com/toeverything/AFFiNE.git
synced 2026-07-18 10:36:22 +08:00
18 lines
259 B
Plaintext
18 lines
259 B
Plaintext
server {
|
|
listen 8080;
|
|
location / {
|
|
root /app/dist;
|
|
try_files $uri $uri/ /index.html;
|
|
}
|
|
|
|
location /admin {
|
|
root /app/admin;
|
|
try_files $uri $uri/ /index.html;
|
|
}
|
|
|
|
error_page 404 /404.html;
|
|
location = /404.html {
|
|
internal;
|
|
}
|
|
}
|