AppFlowy/frontend/appflowy_web_app/nginx.conf
2024-06-29 16:18:47 +08:00

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;
}
}