-
-
Save VasilSlavchev/f8576b56469f88cab7f63e26cc5005d9 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