Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Readarr/commit/117a5c8010a75a777b5a5028f52dfb43817a2e1d
You should set ROOT_URL correctly, otherwise the web may not work correctly.
5 changed files with
24 additions and
1 deletions
@ -21,6 +21,7 @@ function HostSettings(props) {
port ,
urlBase ,
instanceName ,
applicationUrl ,
enableSsl ,
sslPort ,
sslCertPath ,
@ -96,6 +97,21 @@ function HostSettings(props) {
/ >
< / F o r m G r o u p >
< FormGroup
advancedSettings = { advancedSettings }
isAdvanced = { true }
>
< FormLabel > { translate ( 'ApplicationURL' ) } < / F o r m L a b e l >
< FormInputGroup
type = { inputTypes . TEXT }
name = "applicationUrl"
helpText = { translate ( 'ApplicationUrlHelpText' ) }
onChange = { onInputChange }
{ ... applicationUrl }
/ >
< / F o r m G r o u p >
< FormGroup
advancedSettings = { advancedSettings }
isAdvanced = { true }
@ -410,6 +410,8 @@ namespace NzbDrone.Core.Configuration
public CertificateValidationType CertificateValidation = >
GetValueEnum ( "CertificateValidation" , CertificateValidationType . Enabled ) ;
public string ApplicationUrl = > GetValue ( "ApplicationUrl" , string . Empty ) ;
private string GetValue ( string key )
{
return GetValue ( key , string . Empty ) ;
@ -97,5 +97,6 @@ namespace NzbDrone.Core.Configuration
int BackupRetention { get ; }
CertificateValidationType CertificateValidation { get ; }
string ApplicationUrl { get ; }
}
}
@ -34,6 +34,8 @@
"ApiKeyHelpTextWarning" : "Requires restart to take effect" ,
"AppDataDirectory" : "AppData directory" ,
"AppDataLocationHealthCheckMessage" : "Updating will not be possible to prevent deleting AppData on Update" ,
"ApplicationURL" : "Application URL" ,
"ApplicationUrlHelpText" : "This application's external URL including http(s)://, port and URL base" ,
"ApplyTags" : "Apply Tags" ,
"ApplyTagsHelpTexts1" : "How to apply tags to the selected author" ,
"ApplyTagsHelpTexts2" : "Add: Add the tags the existing list of tags" ,
@ -26,6 +26,7 @@ namespace Readarr.Api.V1.Config
public string SslCertPassword { get ; set ; }
public string UrlBase { get ; set ; }
public string InstanceName { get ; set ; }
public string ApplicationUrl { get ; set ; }
public bool UpdateAutomatically { get ; set ; }
public UpdateMechanism UpdateMechanism { get ; set ; }
public string UpdateScriptPath { get ; set ; }
@ -82,7 +83,8 @@ namespace Readarr.Api.V1.Config
CertificateValidation = configService . CertificateValidation ,
BackupFolder = configService . BackupFolder ,
BackupInterval = configService . BackupInterval ,
BackupRetention = configService . BackupRetention
BackupRetention = configService . BackupRetention ,
ApplicationUrl = configService . ApplicationUrl
} ;
}
}