Skip to content

Instantly share code, notes, and snippets.

@bcerban
Last active July 3, 2018 15:29
Show Gist options
  • Select an option

  • Save bcerban/25f3a2d93c19dc562020e0197f78685c to your computer and use it in GitHub Desktop.

Select an option

Save bcerban/25f3a2d93c19dc562020e0197f78685c to your computer and use it in GitHub Desktop.
Apache conf file for CircleCi test env
Listen 8080
<VirtualHost *:8080>
ServerAdmin webmaster@localhost
DocumentRoot /home/circleci/magento2
ServerName magento2.dev
<Directory /home/circleci/magento2>
Options Indexes FollowSymLinks
AllowOverride All
Require all granted
</Directory>
<FilesMatch \.php$>
SetHandler application/x-httpd-php
</FilesMatch>
</VirtualHost>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment