Created
April 12, 2017 06:51
-
-
Save sh6210/4bfb4be40dd5d195237537147dca7a40 to your computer and use it in GitHub Desktop.
This file contains 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
/etc/hosts | |
/etc/apache2/sites-available/000-default | |
<VirtualHost *:80> | |
ServerAdmin [email protected] | |
ServerName phpmyadmin.dev | |
ServerAlias www.phpmyadmin.dev | |
DocumentRoot /var/www/html/phpmyadmin | |
<Directory "/var/www/html/phpmyadmin"> | |
AllowOverride all | |
Options +ExecCGI -MultiViews +SymLinksIfOwnerMatch | |
Order allow,deny | |
Allow from all | |
</Directory> | |
ErrorLog ${APACHE_LOG_DIR}/error.log | |
CustomLog ${APACHE_LOG_DIR}/access.log combined | |
</VirtualHost> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment