Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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..

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.