sudo vim /etc/apache2/sites-available/symfony-test-app.conf
<VirtualHost *:80>
ServerName symfony-test-app.com
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{REQUEST_METHOD} ^(TRACE|TRACK)
RewriteRule .* - [F]
</IfModule>
DocumentRoot /var/www/html/symfony/symfony-test-app/public
<Directory /var/www/html/symfony/symfony-test-app/public>
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Require all granted
</Directory>
</VirtualHost>
sudo vim /etc/hosts
127.0.0.1 symfony-test-app.com
sudo a2ensite symfony-test-app.conf
sudo service apache2 restart