Use the new authentik config pattern for setting listening addresses

This commit is contained in:
Eli Ribble 2026-01-13 14:58:11 +00:00
parent 5288c5857a
commit ff0c139dc8
No known key found for this signature in database

View file

@ -23,14 +23,14 @@ with lib;
from = "auth@corp.gleipnir.technology";
};
listen = {
listen_debug = "127.0.0.1:9900";
listen_debug_py = "127.0.0.1:9901";
listen_http = "127.0.0.1:10030";
listen_https = "127.0.0.1:10031";
listen_ldap = "127.0.0.1:3389";
listen_ldaps = "127.0.0.1:6636";
listen_radius = "127.0.0.1:1812";
listen_metrics = "127.0.0.1:9300";
debug = "127.0.0.1:9900";
debug_py = "127.0.0.1:9901";
http = "127.0.0.1:10030";
https = "127.0.0.1:10031";
ldap = "127.0.0.1:3389";
ldaps = "127.0.0.1:6636";
radius = "127.0.0.1:1812";
metrics = "127.0.0.1:9300";
};
};
};