diff options
author | Freya Murphy <freya@freyacat.org> | 2024-11-26 11:52:43 -0500 |
---|---|---|
committer | Freya Murphy <freya@freyacat.org> | 2024-11-26 11:52:43 -0500 |
commit | f5841f8ebec338fe2af87a2e50d105560b9994ba (patch) | |
tree | 94557f06567179a86b2264e7cd16951bc4de1c1f /src/web/config.php | |
parent | new style, add redirect support (diff) | |
download | ldap_forwardauth-f5841f8ebec338fe2af87a2e50d105560b9994ba.tar.gz ldap_forwardauth-f5841f8ebec338fe2af87a2e50d105560b9994ba.tar.bz2 ldap_forwardauth-f5841f8ebec338fe2af87a2e50d105560b9994ba.zip |
dont hardcode getenv
Diffstat (limited to 'src/web/config.php')
-rw-r--r-- | src/web/config.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/web/config.php b/src/web/config.php new file mode 100644 index 0000000..b33fd7b --- /dev/null +++ b/src/web/config.php @@ -0,0 +1,5 @@ +<?php /* Copyright (c) 2024 Freya Murphy */ + +define('CONFIG', array_merge(getenv(), array( + // custom settings +))); |