feat(idp): ssl pre-read

This commit is contained in:
arcnmx 2024-03-13 09:38:35 -07:00
parent b37e17bc0f
commit 2b1df931cb
5 changed files with 86 additions and 30 deletions

View file

@ -68,12 +68,12 @@ in {
listen = concatMap (addr: [
(mkIf config.addSSL {
inherit addr;
port = 443;
port = nginx.defaultSSLListenPort;
ssl = true;
})
{
inherit addr;
port = 80;
port = nginx.defaultHTTPListenPort;
}
{
inherit addr;