<VirtualHost *:80>
	ServerAdmin webmaster@localhost

	DocumentRoot /var/www

	<Directory />
		Options FollowSymLinks
		AllowOverride None
	</Directory>

# 
# If you are just adding to an existing file and not using a
# virtual host, just use the following lines:
#
        Alias /openvpn /home/openvpn/www/
        Alias /easy-rsa/ /home/openvpn/easy-rsa/
        Alias /openvpnfiles/ /home/openvpn/
        Alias /clientInstallScripts/ /home/openvpn/clients/installscripts/
        Alias /serverInstallScripts/ /home/openvpn/servers/installscripts/

        <Directory /home/openvpn/*>
                Options Indexes FollowSymLinks Multiviews
                AllowOverride All
                Order deny,allow
                Allow from all
        </Directory>
        <Directory /home/openvpn/www/status/*>
                Options Indexes FollowSymLinks Multiviews
                AllowOverride All
                Order deny,allow
                Allow from all
        </Directory>
#
# Following lines are again needed for the virtual host
#

	ErrorLog /var/log/apache2/error.log

	# Possible values include: debug, info, notice, warn, error, crit,
	# alert, emerg.
	LogLevel warn

	CustomLog /var/log/apache2/access.log combined
</VirtualHost>
