Changes between Version 57 and Version 58 of ConfigurationGuidelines


Ignore:
Timestamp:
06/06/10 18:03:41 (14 years ago)
Author:
Fran Boon
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ConfigurationGuidelines

    v57 v58  
    4040}}}
    4141=== Configurable Options ===
    42 These can be set via [http://127.0.0.1:8000/sahana/admin/setting/update/1]
     42These can be set via [http://127.0.0.1:8000/sahana/admin/setting/1/update]
    4343 * Admin Name/Email/Tel
    4444 * Debug: improve performance by deselecting this option.
     
    4949In time these will be configured by [wiki:BluePrintWebSetup Web Setup].
    5050
    51 Some Auth options are currently only configurable via editing {{models/000_config.py}}:
     51Some options are currently only configurable via editing {{models/000_config.py}}:
    5252{{{
    53 S3_PUBLIC_URL
    54 S3_UTC_OFFSET
    55 mail.settings.server
    56 mail.sender
    57 auth.settings.registration_requires_verification
    58 auth.settings.registration_requires_approval        # Don't do this until after 1st admin user registered!
    59 auth.settings.verify_email_onaccept
     53deployment_settings.auth.registration_requires_verification = False
     54deployment_settings.auth.registration_requires_approval = False
     55deployment_settings.base.public_url = "http://127.0.0.1:8000"
     56deployment_settings.base.migrate = True
     57deployment_settings.mail.server = "127.0.0.1:25"
     58deployment_settings.mail.sender = "sahana@your.org"
     59deployment_settings.mail.approver = "useradmin@your.org"
     60deployment_settings.L10n.utc_offset = "UTC +0000"
    6061}}}
    61 In time we could expose to a Web-based admin page, although it's low priority as these are mostly installation-time decisions.
     62We would like to expose these to a [wiki:BluePrintWebSetup Web Setup], although it's low priority as these are mostly installation-time decisions.
    6263
    6364Disable unnecessary modules, which is currently done in {{{models/000_config.py}}}