For my work we're deploying an svn manager web service, but I can't get the apache user to have permissions to the svn directory. chmod 777 did not work....
Where is the apache user located? In my /etc/httpd/conf.d theres an
"http-boxspecific.conf" file, and its contents are:
ServerName (our servername here)
<Directory /var/www/wp>
AllowOverride Options All
Options +FollowSymLinks +MultiViews +ExecCGI
Order allow,deny
Allow from all
</Directory>
<Directory "/var/www/wp/svn-test">
DirectoryIndex index.py
Options ExecCGI
AddHandler cgi-script .py
AllowOverride Options All
</Directory>
<VirtualHost *:80>
ServerName (our server name)
DocumentRoot /var/www/wp
</VirtualHost>
I know this isn't too much to go on, but does anyone know where the apache user info is stored? I'd like to get this done before my boss comes in so it doesn't look like I wasted time all of yesterday..
