Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/ghostfolio/commit/8fe767a4e3a94c1ee2f4f3b8bd2e46e2f3a6b25c?style=split&whitespace=show-all
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
2 additions and
1 deletions
@ -11,6 +11,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Improved the style of the symbol search component
- Improved the style of the symbol search component
- Extended the users table in the admin control panel
- Extended the users table in the admin control panel
- Increased the default request timeout (`REQUEST_TIMEOUT`)
## 2.124.1 - 2024-11-25
## 2.124.1 - 2024-11-25
@ -70,7 +70,7 @@ export class ConfigurationService {
REDIS_HOST : str ( { default : 'localhost' } ) ,
REDIS_HOST : str ( { default : 'localhost' } ) ,
REDIS_PASSWORD : str ( { default : '' } ) ,
REDIS_PASSWORD : str ( { default : '' } ) ,
REDIS_PORT : port ( { default : 6379 } ) ,
REDIS_PORT : port ( { default : 6379 } ) ,
REQUEST_TIMEOUT : num ( { default : 2000 } ) ,
REQUEST_TIMEOUT : num ( { default : ms ( '3 seconds' ) } ) ,
ROOT_URL : url ( { default : DEFAULT_ROOT_URL } ) ,
ROOT_URL : url ( { default : DEFAULT_ROOT_URL } ) ,
STRIPE_PUBLIC_KEY : str ( { default : '' } ) ,
STRIPE_PUBLIC_KEY : str ( { default : '' } ) ,
STRIPE_SECRET_KEY : str ( { default : '' } ) ,
STRIPE_SECRET_KEY : str ( { default : '' } ) ,