~ubuntu-branches/ubuntu/natty/moin/natty-updates

« back to all changes in this revision

Viewing changes to wiki/config/more_samples/auth_session_wikiconfig_snippet

  • Committer: Bazaar Package Importer
  • Author(s): Jonas Smedegaard
  • Date: 2008-06-22 21:17:13 UTC
  • mfrom: (0.9.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20080622211713-fpo2zrq3s5dfecxg
Tags: 1.7.0-3
Simplify /etc/moin/wikilist format: "USER URL" (drop unneeded middle
CONFIG_DIR that was wrongly advertised as DATA_DIR).  Make
moin-mass-migrate handle both formats and warn about deprecation of
the old one.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
    # This is a sample configuration snippet that shows moin's builtin auth and
 
2
    # session configuration. See HelpOnSessions, HelpOnAuthentication and
 
3
    # HelpOnConfiguration for more infos.
 
4
 
 
5
    # authentication methods used (default shown, see also other snippets):
 
6
    #from MoinMoin import auth as authmodule
 
7
    #auth = [authmodule.MoinAuth()]
 
8
 
 
9
    # auth methods that get a user into "Trusted" group:
 
10
    #auth_methods_trusted = ['http', 'xmlrpc_applytoken']
 
11
 
 
12
    # session cookie settings:
 
13
    #cookie_domain = None # use '.domain.tld" for a farm with hosts in that domain
 
14
    #cookie_path = None   # use '/wikifarm" for a farm with pathes below that path
 
15
    #cookie_lifetime = 12 # 12 hours from now
 
16
 
 
17
    # use this if you want sessions for anonymous users, too:
 
18
    #anonymous_session_lifetime = 1 # default: disabled
 
19
 
 
20
    # The default (ENABLED) password_checker will keep users from choosing too
 
21
    # short or too easy passwords. If you don't like this and your site has
 
22
    # rather low security requirements, feel free to DISABLE the checker by:
 
23
    #password_checker = None # None means "don't do any password strength checks"
 
24