mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
4d835c5b4a
* naming convention changes * dev: update docker-compose-hub in consistent with docker-compose * dev: updated docker container name --------- Co-authored-by: sriram veeraghanta <veeraghanta.sriram@gmail.com>
30 lines
544 B
Plaintext
30 lines
544 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://web:3000/;
|
|
}
|
|
|
|
location /api/ {
|
|
proxy_pass http://api:8000/api/;
|
|
}
|
|
|
|
location /spaces/ {
|
|
proxy_pass http://space:3000/spaces/;
|
|
}
|
|
|
|
location /${BUCKET_NAME}/ {
|
|
proxy_pass http://plane-minio:9000/uploads/;
|
|
}
|
|
}
|
|
} |