mirror of
https://github.com/spacebarchat/server.git
synced 2026-03-30 22:35:40 +00:00
15 lines
228 B
Nix
15 lines
228 B
Nix
{
|
|
mkEndpoint = domain: port: ssl: {
|
|
host = domain;
|
|
localPort = port;
|
|
useSsl = ssl;
|
|
publicPort =
|
|
if ssl then
|
|
443
|
|
else if domain == "localhost" then
|
|
port
|
|
else
|
|
80;
|
|
};
|
|
}
|