summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAshish Kulkarni <kulkarni.ashish@gmail.com>2014-08-20 19:38:20 +0530
committerAshish Kulkarni <kulkarni.ashish@gmail.com>2014-08-20 20:12:05 +0530
commit3a0dd411287b2834ac34a1fa0f88b273bd60fbfb (patch)
treecb66ef0674acc83daf1c83e6d3a726269f3ad611 /docs
parent9254d3b2502c1be2d511701d1e81386d2786a017 (diff)
support specifying default email domain for reverse proxy setup
Diffstat (limited to 'docs')
-rw-r--r--docs/reverse-proxy-authentication.markdown5
1 files changed, 5 insertions, 0 deletions
diff --git a/docs/reverse-proxy-authentication.markdown b/docs/reverse-proxy-authentication.markdown
index c3243208..446adcb8 100644
--- a/docs/reverse-proxy-authentication.markdown
+++ b/docs/reverse-proxy-authentication.markdown
@@ -42,4 +42,9 @@ define('REVERSE_PROXY_USER_HEADER', 'REMOTE_USER');
// you should want to have a bootstrap admin user.
define('REVERSE_PROXY_DEFAULT_ADMIN', 'myadmin');
+// 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', 'mydomain.com');
+
```