mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
26 lines
427 B
Plaintext
26 lines
427 B
Plaintext
events { }
|
|
|
|
|
|
http {
|
|
sendfile on;
|
|
|
|
server {
|
|
listen 80;
|
|
root /www/data/;
|
|
access_log /var/log/nginx/access.log;
|
|
|
|
client_max_body_size ${FILE_SIZE_LIMIT};
|
|
|
|
location / {
|
|
proxy_pass http://planefrontend:3000/;
|
|
}
|
|
|
|
location /api/ {
|
|
proxy_pass http://planebackend:8000/api/;
|
|
}
|
|
|
|
location /${BUCKET_NAME}/ {
|
|
proxy_pass http://plane-minio:9000/uploads/;
|
|
}
|
|
}
|
|
} |