mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
0fb4a87454
* dev: basic initial setup for images * Update docker-compose.yml * dev: minio setup * dev: docker minio setup * dev: update the asset view * dev: setup minio with default configuration * dev: update minio setup for creating buckets * dev: update the permission sets * dev: get variables from shell for create bucket * dev: update image uploading setup for docker * dev: environment variables update * dev: web url for images * dev: update image configuration * dev: env update for email port --------- Co-authored-by: Narayana <narayana.vadapalli1996@gmail.com>
23 lines
367 B
Nginx Configuration File
23 lines
367 B
Nginx Configuration File
events { }
|
|
|
|
|
|
http {
|
|
sendfile on;
|
|
|
|
server {
|
|
listen 80;
|
|
root /www/data/;
|
|
access_log /var/log/nginx/access.log;
|
|
location / {
|
|
proxy_pass http://planefrontend:3000/;
|
|
}
|
|
|
|
location /api/ {
|
|
proxy_pass http://planebackend:8000/api/;
|
|
}
|
|
|
|
location /uploads/ {
|
|
proxy_pass http://minio:9000/uploads/;
|
|
}
|
|
}
|
|
} |