aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorHabeas Codice <habeascodice@federated.social>2015-01-30 19:37:25 -0800
committerHabeas Codice <habeascodice@federated.social>2015-01-30 19:37:25 -0800
commit3e5226adc70838c784a0b208de25fffde37a6679 (patch)
tree71822ee206098d76bae7f84e3820cd0b44b0816f /doc
parent5d2ab4a4fc60229c923a15e82df62c5ca172459b (diff)
downloadvolse-hubzilla-3e5226adc70838c784a0b208de25fffde37a6679.tar.gz
volse-hubzilla-3e5226adc70838c784a0b208de25fffde37a6679.tar.bz2
volse-hubzilla-3e5226adc70838c784a0b208de25fffde37a6679.zip
Add more detail about directory_mode settings to default config and docs
Diffstat (limited to 'doc')
-rw-r--r--doc/faq_admins.bb12
1 files changed, 11 insertions, 1 deletions
diff --git a/doc/faq_admins.bb b/doc/faq_admins.bb
index 0a3f774e9..fed66a8dd 100644
--- a/doc/faq_admins.bb
+++ b/doc/faq_admins.bb
@@ -63,6 +63,16 @@ Do not reinstall a hub with a fresh database and fresh .htconfig.php unless as a
Use the custom_home addon available in the main addons repository.
-
+[h3]What do the different directory mode settings mean?[/h3]
+[code]// Configure how we communicate with directory servers.
+// DIRECTORY_MODE_NORMAL = directory client, we will find a directory (all of your member's queries will be directed elsewhere)
+// DIRECTORY_MODE_SECONDARY = caching directory or mirror (keeps in sync with realm primary [adds significant cron execution time])
+// DIRECTORY_MODE_PRIMARY = main directory server (you do not want this unless you are operating your own realm. one per realm.)
+// DIRECTORY_MODE_STANDALONE = "off the grid" or private directory services (only local site members in directory)
+[/code]
+- The default is NORMAL. This off-loads most directory services to a different server. The server used is the config:system/directory_server. This setting MAY be updated by the code to one of the project secondaries if the current server is unreachable. You should either be in control of this other server, or should trust it to use this setting.
+- SECONDARY. This allows your local site to act as a directory server without exposing your member's queries to another server. It requires extra processing time during the cron polling, and is not recommended to be run on a shared web host.
+- PRIMARY. This allows you to run a completely separate 'Network' of directory servers with your own Realm. By default, all servers are on the RED_GLOBAL realm unless the config:system/directory_realm setting is overridden. [i]Do not use this unless you have your own directory_realm.[/i]
+- STANDALONE. This is like primary, except it's a 'Network' all on it's own without talking to any other servers. Use this if you have only one server and want to be segregated from the Red#Matrix directory listings.
#include doc/macros/main_footer.bb;