# Apache Server configuration for the docker container
# This is not suitable for production use!
<Directory /app/tests/testapp/web>
        Options Indexes FollowSymLinks
        AllowOverride All
        Require all granted
</Directory>
<VirtualHost *:80>
        ServerAdmin webmaster@localhost
        DocumentRoot /app/tests/testapp/web
        ErrorLog /app/tests/tmp/api-error.log
        CustomLog /app/tests/tmp/api-access.log combined
</VirtualHost>
 
  |