Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/ghostfolio/commit/302339e1cd21fcd1c3e5585bc538491353f2b810
You should set ROOT_URL correctly, otherwise the web may not work correctly.
4 changed files with
7 additions and
3 deletions
@ -12,5 +12,5 @@ POSTGRES_PASSWORD=<INSERT_POSTGRES_PASSWORD>
ACCESS_TOKEN_SALT=<INSERT_RANDOM_STRING>
ALPHA_VANTAGE_API_KEY=
DATABASE_URL=postgresql://${POSTGRES_USER}:${POSTGRES_PASSWORD}@localhost:5432/${POSTGRES_DB}?sslmode=prefer
DATABASE_URL=postgresql://${POSTGRES_USER}:${POSTGRES_PASSWORD}@localhost:5432/${POSTGRES_DB}?connect_timeout=300& sslmode=prefer
JWT_SECRET_KEY=<INSERT_RANDOM_STRING>
@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## Unreleased
### Added
- Added a connection timeout to the environment variable `DATABASE_URL`
### Fixed
- Improved the _Select all_ activities checkbox state after importing activities including a duplicate
@ -5,7 +5,7 @@ services:
env_file:
- ../.env
environment:
DATABASE_URL : postgresql://${POSTGRES_USER}:${POSTGRES_PASSWORD}@postgres:5432/${POSTGRES_DB}? sslmode=prefer
DATABASE_URL : postgresql://${POSTGRES_USER}:${POSTGRES_PASSWORD}@postgres:5432/${POSTGRES_DB}? connect_timeout=300& sslmode=prefer
NODE_ENV : production
REDIS_HOST : 'redis'
REDIS_PASSWORD : ${REDIS_PASSWORD}
@ -5,7 +5,7 @@ services:
env_file:
- ../.env
environment:
DATABASE_URL : postgresql://${POSTGRES_USER}:${POSTGRES_PASSWORD}@postgres:5432/${POSTGRES_DB}? sslmode=prefer
DATABASE_URL : postgresql://${POSTGRES_USER}:${POSTGRES_PASSWORD}@postgres:5432/${POSTGRES_DB}? connect_timeout=300& sslmode=prefer
NODE_ENV : production
REDIS_HOST : 'redis'
REDIS_PASSWORD : ${REDIS_PASSWORD}