[OS]/Embedded&Linux

Trac Authentication

하늘을닮은호수M 2007. 10. 24. 17:47
반응형

Adding Authentication

The simplest way to enable authentication with Apache is to create a password file. Use the htpasswd program to create the password file:

$ htpasswd -c /somewhere/trac.htpasswd adminNew password: Re-type new password: Adding password for user admin

After the first user, you dont need the "-c" option anymore:

$ htpasswd /somewhere/trac.htpasswd johnNew password: Re-type new password: Adding password for user john

See the man page for htpasswd for full documentation.

After you've created the users, you can set their permissions using TracPermissions.

반응형

'[OS] > Embedded&Linux' 카테고리의 다른 글

redmine  (0) 2012.01.03
sed, awk 사용법  (0) 2008.10.23
svn restore  (0) 2007.10.17
trac backup & restore  (0) 2007.10.17
The Slab Allocator: An Object-Caching Kernel Memory Allocator  (0) 2007.10.15