mirror of
https://fast.feibisi.com/https://github.com/parcelvoy/platform.git
synced 2025-08-29 11:56:04 +08:00
15 lines
No EOL
275 B
Text
15 lines
No EOL
275 B
Text
server {
|
|
listen 3000;
|
|
root /usr/share/nginx/html;
|
|
index index.html;
|
|
|
|
location / {
|
|
try_files $uri $uri/ /index.html;
|
|
}
|
|
|
|
location ~ ^\/(api|uploads|.well-known|c\/|o\/) {
|
|
proxy_pass http://api:3001;
|
|
}
|
|
|
|
client_max_body_size 64M;
|
|
} |