My php apache2 site is configured and ready but somehow I keep getting the default page.
sworup@sandwitchslayer:/etc/apache2/sites-enabled$ ls -l
total 0
lrwxrwxrwx 1 root root 34 Sep 17 00:38 sworup.com.conf -> ../sites-available/sworup.com.conf
sworup@sandwitchslayer:/etc/apache2/sites-enabled$ cat sworup.com.conf
<VirtualHost *:80>
ServerName sworup.com.np
ServerAlias sworup.com.np
ServerAdmin sworup@sworup.com.np
DocumentRoot /home/sworup/Code/sworup.com/current/public
<Directory /home/sworup/Code/sworup.com/current/public>
Options Indexes FollowSymLinks
AllowOverride All
Require all granted
</Directory>
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>