mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2024-08-30 18:12:39 +00:00
14 lines
237 B
Nginx Configuration File
14 lines
237 B
Nginx Configuration File
server {
|
|
listen 3000;
|
|
server_name localhost;
|
|
|
|
location /static/ {
|
|
root /usr/share/nginx/html;
|
|
try_files $uri =404;
|
|
}
|
|
|
|
location /appflowy.svg {
|
|
root /usr/share/nginx/html;
|
|
try_files $uri =404;
|
|
}
|
|
} |