Changes between Version 57 and Version 58 of ConfigurationGuidelines
- Timestamp:
- 06/06/10 18:03:41 (15 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
ConfigurationGuidelines
v57 v58 40 40 }}} 41 41 === Configurable Options === 42 These can be set via [http://127.0.0.1:8000/sahana/admin/setting/ update/1]42 These can be set via [http://127.0.0.1:8000/sahana/admin/setting/1/update] 43 43 * Admin Name/Email/Tel 44 44 * Debug: improve performance by deselecting this option. … … 49 49 In time these will be configured by [wiki:BluePrintWebSetup Web Setup]. 50 50 51 Some Authoptions are currently only configurable via editing {{models/000_config.py}}:51 Some options are currently only configurable via editing {{models/000_config.py}}: 52 52 {{{ 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 53 deployment_settings.auth.registration_requires_verification = False 54 deployment_settings.auth.registration_requires_approval = False 55 deployment_settings.base.public_url = "http://127.0.0.1:8000" 56 deployment_settings.base.migrate = True 57 deployment_settings.mail.server = "127.0.0.1:25" 58 deployment_settings.mail.sender = "sahana@your.org" 59 deployment_settings.mail.approver = "useradmin@your.org" 60 deployment_settings.L10n.utc_offset = "UTC +0000" 60 61 }}} 61 In time we could expose to a Web-based admin page, although it's low priority as these are mostly installation-time decisions.62 We would like to expose these to a [wiki:BluePrintWebSetup Web Setup], although it's low priority as these are mostly installation-time decisions. 62 63 63 64 Disable unnecessary modules, which is currently done in {{{models/000_config.py}}}