Skip to content

Instantly share code, notes, and snippets.

@kudaliar032
Last active July 9, 2019 09:28
Show Gist options
  • Select an option

  • Save kudaliar032/e95a80d76f6b023cd925cb321a861c3c to your computer and use it in GitHub Desktop.

Select an option

Save kudaliar032/e95a80d76f6b023cd925cb321a861c3c to your computer and use it in GitHub Desktop.
apache virtualhost configuration for laravel-docker
<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