summaryrefslogtreecommitdiff
path: root/config.default.php
diff options
context:
space:
mode:
authorFrédéric Guillot <fred@kanboard.net>2014-08-13 12:47:17 -0700
committerFrédéric Guillot <fred@kanboard.net>2014-08-13 12:47:17 -0700
commitb92935d2dc7e02b19f60fef37e6139197b054e30 (patch)
tree2f664b619e75c0cf7ddf75088f9932b2a4614492 /config.default.php
parent66b5659578a9f982b03a85bce7985252119613c3 (diff)
Add ReverseProxy authentication (pull-request #199)
Diffstat (limited to 'config.default.php')
-rw-r--r--config.default.php9
1 files changed, 9 insertions, 0 deletions
diff --git a/config.default.php b/config.default.php
index 027d8417..b1028767 100644
--- a/config.default.php
+++ b/config.default.php
@@ -71,3 +71,12 @@ define('GITHUB_CLIENT_ID', '');
// GitHub client secret key (Copy it from your settings -> Applications -> Developer applications)
define('GITHUB_CLIENT_SECRET', '');
+
+// Enable/disable the reverse proxy authentication
+define('REVERSE_PROXY_AUTH', false);
+
+// Header name to use for the username
+define('REVERSE_PROXY_USER_HEADER', 'REMOTE_USER');
+
+// Username of the admin, by default blank
+define('REVERSE_PROXY_DEFAULT_ADMIN', '');