Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/ghostfolio/blame/commit/ef4a75d1f0c0714ccff734fa7288e39e5c01bb64/.env.example You should set ROOT_URL correctly, otherwise the web may not work correctly.
ghostfolio/.env.example

17 lines
443 B

4 years ago
COMPOSE_PROJECT_NAME=ghostfolio-development
# CACHE
REDIS_HOST=localhost
4 years ago
REDIS_PORT=6379
REDIS_PASSWORD=<INSERT_REDIS_PASSWORD>
4 years ago
# POSTGRES
4 years ago
POSTGRES_DB=ghostfolio-db
4 years ago
POSTGRES_USER=user
POSTGRES_PASSWORD=<INSERT_POSTGRES_PASSWORD>
4 years ago
ACCESS_TOKEN_SALT=<INSERT_RANDOM_STRING>
4 years ago
ALPHA_VANTAGE_API_KEY=
DATABASE_URL=postgresql://${POSTGRES_USER}:${POSTGRES_PASSWORD}@localhost:5432/${POSTGRES_DB}?sslmode=prefer
JWT_SECRET_KEY=<INSERT_RANDOM_STRING>