Changes between Version 2 and Version 3 of Add users to trac


Ignore:
Timestamp:
04/30/25 09:12:26 (3 weeks ago)
Author:
enno
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Add users to trac

    v2 v3  
    1 soon
     1Our trac setup uses a .htpasswd files for authentication of users.
     2
     3As you can see trac starts with a certain .htpasswd file for each project (Neotek, Onboard, playground)
     4
     5/bin/tracd --protocol https --certfile /etc/letsencrypt/live/kokyou.dev/cert.pem --keyfile /etc/letsencrypt/live/kokyou.dev/privkey.pem \
     6--basic-auth=*,/srv/trac/.htpasswd,Neotek --basic-auth=*,/srv/trac/.htpasswd,Onboarding --basic-auth=*,/srv/trac/.htpasswd,playground -e /srv/trac/ \
     7--group tracd --user tracd --port=8080
     8
     9The user can not easily set or change his password. Applying passwords is always done by the sites admin. If you want to choose your own password, you can
     10generate it via
     11
     12{{{#!sh
     13htpasswd -c .htpasswd jane
     14htpasswd .htpasswd tarzan
     15}}}
     16
     17The above two commands create a new .htpasswd file for jane and add another user named tarzan afterwards. The passwords are MD5 hashed.
     18You can send the .htpasswd file on a secure way to your site admin with an request for access rights to a given trac project.
     19
    220
    321[wiki:Workflows back]