New: Optionally use Environment Variables for settings in config.xml

This commit is contained in:
sillock1
2024-05-10 20:35:03 +01:00
committed by Bogdan
parent c7226fc85f
commit da30b55902
10 changed files with 155 additions and 34 deletions
@@ -0,0 +1,12 @@
namespace NzbDrone.Common.Options;
public class ServerOptions
{
public string UrlBase { get; set; }
public string BindAddress { get; set; }
public int? Port { get; set; }
public bool? EnableSsl { get; set; }
public int? SslPort { get; set; }
public string SslCertPath { get; set; }
public string SslCertPassword { get; set; }
}