XiZi's Blog

First: apache svn mysql 配置 on Ubuntu

 dav_svn.conf  的配置:

# dav_svn.conf - Example Subversion/Apache configuration
#
# For details and further options see the Apache user manual and
# the Subversion book.
#
# NOTE: for a setup with multiple vhosts, you will want to do this
# configuration in /etc/apache2/sites-available/*, not here.

# <Location URL> ... </Location>
# URL controls how the repository appears to the outside world.
# In this example clients access the repository as http://hostname/svn/
# Note, a literal /svn should NOT exist in your document root.
  Auth_MySQL_Info localhost mysqluser userpassword
  Auth_MySQL_General_DB svndbinmysql

<Location /svn>
  DAV svn
  SVNParentPath /home/.svn
  AuthType Basic
  AuthName "Subversion Repository"
  AuthUserFile /dev/null
  AuthBasicAuthoritative off
  AuthMYSQL on
  AuthMySQL_Authoritative on
  AuthMySQL_Password_Table user_info
  AuthMySQL_Group_Table user_info
  AuthMySQL_Empty_Passwords off
  AuthMySQL_Encryption_Types Plaintext
  Require valid-user
</Location>



 




Host by is-Programmer.com | Power by Chito 1.3.3 beta | © 2007 LinuxGem | Design by Matthew "Agent Spork" McGee