# Required Network configuration # ---------------------------------------- # The name that clients can use to reach this host external_hostname = "weave.wagnerrp.com" # The scheme to reach this host (http or https) external_scheme = "http" external_base_url = "%s://%s" % (external_scheme, external_hostname) # Supported Functions # ---------------------------------------- host_functions_user = True host_functions_storage = True host_functions_openid = True host_functions_opensocial = True host_functions_webfinger = True # Account implementation: # ---------------------------------------- # To use in-memory, just import this: # import account_mem as account # To use LDAP, provide an LDAP server and import account_ldap #LDAP_SERVER = 'ldaps://addressbook.mozilla.com' #import account_ldap as account # To use sqlite, just import this import account_sqlite as account # Storage implementation: # ---------------------------------------- # To use per-user SQLite: import storage_peruser_sqlite storage = storage_peruser_sqlite