mirror of
https://github.com/badaix/snapcast.git
synced 2025-05-10 15:46:42 +02:00
Use HTTPS, support for HTTP missing
This commit is contained in:
parent
f7bd5e733f
commit
a796bb2032
14 changed files with 121 additions and 54 deletions
|
@ -38,6 +38,12 @@ struct ServerSettings
|
|||
std::string data_dir{""};
|
||||
};
|
||||
|
||||
struct Ssl
|
||||
{
|
||||
std::string certificate{""};
|
||||
std::string private_key{""};
|
||||
};
|
||||
|
||||
struct Http
|
||||
{
|
||||
bool enabled{true};
|
||||
|
@ -79,6 +85,7 @@ struct ServerSettings
|
|||
};
|
||||
|
||||
Server server;
|
||||
Ssl ssl;
|
||||
Http http;
|
||||
Tcp tcp;
|
||||
Stream stream;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue