An unfinished system to manage all your paper documentation in an easy way.
Vous ne pouvez pas sélectionner plus de 25 sujets
Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
1234567891011121314151617181920212223242526 |
- # requires debian/ubuntu: libaprutil1-dbd-mysql libapache2-mod-fcgid
- # run:
- # a2enmod dbd
- # a2enmod authn_dbd
- # a2enmod authn_socache
- # a2enmod fcgid
-
- DBDriver mysql
- DBDParams "host=localhost dbname=autodoc user=autodoc pass=autodoc"
- DBDMin 4
- DBDKeep 8
- DBDMax 20
- DBDExptime 300
-
- <Directory "/opt/autodoc">
- AuthType Basic
- AuthName "AutoDoc Authentication"
- AuthBasicProvider socache dbd
- AuthnCacheProvideFor dbd
- AuthnCacheContext autodoc
- Require valid-user
- AuthDBDUserPWQuery "SELECT passwd FROM users WHERE username = %s"
- </Directory>
-
- DocumentRoot "/opt/autodoc/www"
- ScriptAliasMatch /v1/.* /opt/autodoc/cgi/autodoc.fcgi
|