Last active
July 3, 2018 15:29
-
-
Save bcerban/25f3a2d93c19dc562020e0197f78685c to your computer and use it in GitHub Desktop.
Apache conf file for CircleCi test env
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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