Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lelit/accountmanagerplugin-old
The mirror of AccountManagerPlugin
https://github.com/lelit/accountmanagerplugin-old
Last synced: 4 days ago
JSON representation
The mirror of AccountManagerPlugin
- Host: GitHub
- URL: https://github.com/lelit/accountmanagerplugin-old
- Owner: lelit
- License: other
- Created: 2013-03-20T18:22:36.000Z (almost 12 years ago)
- Default Branch: trunk
- Last Pushed: 2013-03-20T18:59:27.000Z (almost 12 years ago)
- Last Synced: 2024-11-18T03:41:09.053Z (about 1 month ago)
- Language: Python
- Homepage: http://trac-hacks.org/wiki/AccountManagerPlugin
- Size: 826 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README
- Changelog: changelog
- License: COPYING
Awesome Lists containing this project
README
= TracAccountManager =
A user account management plugin for Trac.
== Installation ==
1. Run: python setup.py bdist_egg
2. If necessary, create a folder called "plugins" in your Trac environment.
3. Copy the .egg file from the "dist" folder created by step 1
into the "plugins" directory of your Trac environment.== Configuration ==
Add one of the following sections to trac.ini to get started. See even
more configuration examples for supported backends at
http://trac-hacks.org/wiki/AccountManagerPlugin/AuthStores
or in the configuraition cookbook page at
http://trac-hacks.org/wiki/CookBook/AccountManagerPluginConfiguration=== Htpasswd ===
{{{
[account-manager]
; use an Apache htpasswd file
htpasswd_hash_type = md5
htpasswd_file = /path/to/trac.htpasswd
password_store = HtPasswdStore
}}}=== Htdigest ===
{{{
[account-manager]
; use an Apache htdigest file
htdigest_file = /path/to/trac.htdigest
htdigest_realm = TracDigestRealm
password_store = HtDigestStore
}}}=== HttpAuth ===
{{{
[account-manager]
; use a page that is secured with HTTP Auth
authentication_url = http://hostname/path
password_store = HttpAuthStore
}}}