[OS]/Linux

Trac Authentication

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

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 admin
New password: <type password>
Re-type new password: <type password again>
Adding password for user admin

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

$ htpasswd /somewhere/trac.htpasswd john
New password: <type password>
Re-type new password: <type password again>
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] > Linux' 카테고리의 다른 글

ftp 자동접속 & 특정 파일 내려받기 & 로그 분석  (0) 2008.08.01
yum.repo.d 설정  (0) 2008.07.03
Touch Screen & Beryl  (0) 2007.10.23
svn restore  (0) 2007.10.18
Touch Screen & Beryl.. Wow!!!  (0) 2007.10.18