platform/apps/ui/docker/nginx/conf.d/default.conf
Chris Anderson cfdea761f7
Fixes Nginx path (#121)
* Fixes Nginx path

* Speeds up tests
2023-04-10 08:55:29 -05:00

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