Last active
July 9, 2019 09:28
-
-
Save kudaliar032/e95a80d76f6b023cd925cb321a861c3c to your computer and use it in GitHub Desktop.
apache virtualhost configuration for laravel-docker
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
| <VirtualHost *:80> | |
| ServerAdmin webmaster@localhost | |
| DocumentRoot /var/www/html/public | |
| Alias /phpmyadmin /pma | |
| ErrorLog /var/log/apache2/error.log | |
| CustomLog /var/log/apache2/access.log combined | |
| <Directory /var/www/html/public> | |
| AllowOverride All | |
| </Directory> | |
| <Directory /pma> | |
| Options Indexes FollowSymLinks MultiViews | |
| Require all granted | |
| AllowOverride All | |
| </Directory> | |
| </VirtualHost> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment