So, I've followed every tutorial I can find on Google and still can't get this to work. Below is the subversion.conf file I have in my conf.d folder of my server.
LoadModule dav_svn_module modules/mod_dav_svn.so
LoadModule authz_svn_module modules/mod_authz_svn.so
<VirtualHost *:80>
DocumentRoot /home/svn.example.com
ServerName svn.example.com
ServerAlias svn.example.com
<Location /repo>
DAV svn
SVNParentPath /home/svn.example.com/repo
</Location>
</VirtualHost>
I already installed subversion via yum as well as dav_svn.
I just want to access my repository without security yet...I'll add that shortly, but right now the result is that I get the default Apache HTTP Server Test Page that indicates the server is installed but there are no files in the directory. What am I doing wrong?