<VirtualHost *:80>
    ServerAdmin webmaster@localhost
    ServerName phptemplateprojecthost.dev
    
    DocumentRoot /vagrant/www
    <Directory /vagrant/www>
        Options Indexes FollowSymLinks Includes
        AllowOverride All
        Require all granted
    </Directory>
</VirtualHost>
<VirtualHost *:443>
    SSLEngine on
    SSLCertificateFile /etc/apache2/ssl/ssl.crt
    SSLCertificateKeyFile /etc/apache2/ssl/ssl.key
    SetEnvIf User-Agent ".*MSIE.*" nokeepalive ssl-unclean-shutdown

    ServerAdmin webmaster@localhost
    ServerName phptemplateprojecthost.dev
    DocumentRoot /vagrant/www
    <Directory /vagrant/www>
        Options Indexes FollowSymLinks Includes
        AllowOverride All
        Require all granted
    </Directory>
</VirtualHost>
