feat: added proxy to plane and fixed minor issues

This commit is contained in:
naterfute
2025-04-02 19:54:06 -07:00
parent 4d37936413
commit 2277a1c0ac
2 changed files with 109 additions and 2 deletions

View File

@@ -165,6 +165,26 @@ services:
env_file:
- .env
nginx:
image: "nginx:1.27.4"
restart: unless-stopped
networks:
- dev_env
ports:
- ${NGINX_PORT}:80
volumes:
- ../files/volumes/nginx/nginx.conf.template:/etc/nginx/conf.d/default.conf
env_file:
- .env
environment:
FILE_SIZE_LIMIT: ${FILE_SIZE_LIMIT:-5242880}
BUCKET_NAME: ${AWS_S3_BUCKET_NAME:-uploads}
depends_on:
- web
- api
- space
- admin
volumes:
redisdata: