Access to /svn problem

Discussion in 'Installation/Configuration' started by minskog, Mar 26, 2008.

  1. minskog

    minskog New Member

    I received an 403 error when i try to acess to trunk directory at /var/www./svn/domain/trunk

    I have the websites in development on /var/www/svn/domain/trunk, all is owned by www-data.

    I create for each virtualhost this alias
    Code:
     Alias /trunk '/var/www/svn/domain/trunk'
    But I received an 403 error when i try to acess to /trunk

    At logs say that it is watching for a .htacces file on /var/www/svn ...
    Code:
    (13)Permission denied: /var/www/svn/.htaccess pcfg_openfile: unable to check htaccess file, ensure it is readable
    
    Note: I need to see website NOT manage svn.
     
  2. falko

    falko Super Moderator Howtoforge Staff

    What's the output of
    Code:
    ls -la /var/www/svn
    ?
     
  3. minskog

    minskog New Member

    Code:
    ls -la /var/www/svn
    total 1
    drwxrwx---  6 root     subversion 224 2008-03-26 22:42 .
    drwxr-xr-x 13 root     root       568 2008-03-27 00:30 ..
    drwxrws---  7 www-data subversion 224 2008-03-26 21:31 web1.com
    drwxrws---  7 www-data subversion 224 2008-03-26 15:58 web2.com
    drwxrws---  7 www-data subversion 224 2008-03-26 14:13 web3.com
     
  4. falko

    falko Super Moderator Howtoforge Staff

    Try
    Code:
    chmod 775 /var/www/svn
     
  5. minskog

    minskog New Member

    working, thanks :)
     

Share This Page