Forum Moderators: phranque
I want to create a NameVirtualHost that use the project's repository as DocumentRoot so that I can use project.mydomain.com to access my project,install it, run it and test it.
PHP files on mydomain.com/repos/project are not executable. I tried to find the physical path of project repository but I cannot. There are no my project files in /var/www/svn/project
Thank you,
Here is my SVN conf
<Location /repos>
DAV svn
SVNParentPath /var/www/svn/
# Limit write permission to list of valid users.
<LimitExcept GET PROPFIND OPTIONS REPORT>
# Require SSL connection for password protection.
# SSLRequireSSL
AuthType Basic
AuthName "Authorization Realm"
AuthUserFile /var/www/html/admin/.htpasswd
Require valid-user
</LimitExcept>
</Location>