mirror of
https://github.com/Readarr/Readarr
synced 2026-05-09 05:21:41 +02:00
Change SSL port and set default branch to develop
This commit is contained in:
parent
67119d97aa
commit
402f7435ee
1 changed files with 2 additions and 2 deletions
|
|
@ -136,7 +136,7 @@ public string BindAddress
|
||||||
|
|
||||||
public int Port => GetValueInt("Port", 8686);
|
public int Port => GetValueInt("Port", 8686);
|
||||||
|
|
||||||
public int SslPort => GetValueInt("SslPort", 9898);
|
public int SslPort => GetValueInt("SslPort", 6868);
|
||||||
|
|
||||||
public bool EnableSsl => GetValueBoolean("EnableSsl", false);
|
public bool EnableSsl => GetValueBoolean("EnableSsl", false);
|
||||||
|
|
||||||
|
|
@ -162,7 +162,7 @@ public AuthenticationType AuthenticationMethod
|
||||||
|
|
||||||
public bool AnalyticsEnabled => GetValueBoolean("AnalyticsEnabled", true, persist: false);
|
public bool AnalyticsEnabled => GetValueBoolean("AnalyticsEnabled", true, persist: false);
|
||||||
|
|
||||||
public string Branch => GetValue("Branch", "master").ToLowerInvariant();
|
public string Branch => GetValue("Branch", "develop").ToLowerInvariant();
|
||||||
|
|
||||||
public string LogLevel => GetValue("LogLevel", "Info");
|
public string LogLevel => GetValue("LogLevel", "Info");
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue