I'm trying to set up a asp net website using mod_mono on ubuntu using apache. Currently I'm getting an error where everything returns an error 404 from the apache server.
Here's the conf for the website (I've replaced some stuff to keep some privacy, such as the ip and site name)
<VirtualHost ---------->
DocumentRoot /home/euan/ftp/files/Site
ServerName Site.org
HostNameLookups on
ServerAlias www.Site.org
<Directory "/home/euan/ftp/files/Site">
allow from all
Options None
SetHandler mono
Require all granted
</Directory>
</VirtualHost>
Can anyone help me with this? Is this something silly like an incompatibility between the mono and asp.net frameworks? Or are my configs wrong?