21 lines
752 B
PHP
21 lines
752 B
PHP
<?php
|
|
|
|
define('DEBUG', false);
|
|
define('LOG_DRIVER', 'stdout');
|
|
|
|
// Enable/disable reverse proxy authentication
|
|
define('REVERSE_PROXY_AUTH', true); // Set this value to true
|
|
|
|
// The HTTP header to retrieve. If not specified, REMOTE_USER is the default
|
|
define('REVERSE_PROXY_USER_HEADER', 'HTTP_FORWARDED_USER');
|
|
|
|
// The default Kanboard admin for your organization.
|
|
// Since everything should be filtered by the reverse proxy,
|
|
// you should want to have a bootstrap admin user.
|
|
define('REVERSE_PROXY_DEFAULT_ADMIN', 'jimmy');
|
|
|
|
// The default domain to assume for the email address.
|
|
// In case the username is not an email address, it
|
|
// will be updated automatically as USER@mydomain.com
|
|
define('REVERSE_PROXY_DEFAULT_DOMAIN', 'internal.jpace121.net');
|