Advertisement
Guest User

Untitled

a guest
Feb 20th, 2017
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.62 KB | None | 0 0
  1. <VirtualHost 192.168.56.52:8011>
  2. ServerName lazrepos.ho.local
  3. ServerAlias util01.lazrepos.ho.local lazrepos.br.local util01.lazrepos.br.local util01.lazrepos.local lazvbox.local
  4. ServerAdmin webmaster@localhost
  5. DocumentRoot /home/lazrepos/repos/svn
  6.  
  7. DirectoryIndex index.html
  8.  
  9. <Directory />
  10. Require all granted
  11. </Directory>
  12.  
  13. <Directory /home/lazrepos/repos/cgi/viewvc/bin/cgi/ >
  14. AddHandler cgi-script .cgi .pl
  15. Options +ExecCGI
  16. Order allow,deny
  17. Allow from all
  18. </Directory>
  19.  
  20. ScriptAlias /viewvc /home/lazrepos/repos/cgi/viewvc/bin/cgi/viewvc.cgi
  21. ScriptAlias /query /home/lazrepos/repos/cgi/viewvc/bin/cgi/query.cgi
  22.  
  23. ErrorLog /home/lazrepos/sites/lazrepos/www/logs/apache2/error.log
  24. CustomLog /home/lazrepos/sites/lazrepos/www/logs/apache2/access.log combined
  25.  
  26. # For most configuration files from conf-available/, which are
  27. # enabled or disabled at a global level, it is possible to
  28. # include a line for only one particular virtual host. For example the
  29. # following line enables the CGI configuration for this host only
  30. # after it has been globally disabled with "a2disconf".
  31. #Include conf-available/serve-cgi-bin.conf
  32.  
  33. LoadModule dav_module modules/mod_dav.so
  34. LoadModule dav_svn_module modules/mod_dav_svn.so
  35.  
  36. <Location /lazrepos/svn>
  37. DAV svn
  38. SVNParentPath /home/lazrepos/repos/svn/fpc_laz
  39. </Location>
  40. </VirtualHost>
  41.  
  42. # vim: syntax=apache ts=4 sw=4 sts=4 sr noet
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement