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
  1. # requires debian/ubuntu: libaprutil1-dbd-mysql libapache2-mod-fcgid
  2. # run:
  3. # a2enmod dbd
  4. # a2enmod authn_dbd
  5. # a2enmod authn_socache
  6. # a2enmod fcgid
  7. DBDriver mysql
  8. DBDParams "host=localhost dbname=autodoc user=autodoc pass=autodoc"
  9. DBDMin 4
  10. DBDKeep 8
  11. DBDMax 20
  12. DBDExptime 300
  13. <Directory "/opt/autodoc">
  14. AuthType Basic
  15. AuthName "AutoDoc Authentication"
  16. AuthBasicProvider socache dbd
  17. AuthnCacheProvideFor dbd
  18. AuthnCacheContext autodoc
  19. Require valid-user
  20. AuthDBDUserPWQuery "SELECT passwd FROM users WHERE username = %s"
  21. </Directory>
  22. DocumentRoot "/opt/autodoc/www"
  23. ScriptAliasMatch /v1/.* /opt/autodoc/cgi/autodoc.fcgi