Advertisement
Guest User

Untitled

a guest
Sep 18th, 2019
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. <VirtualHost *:80>
  2. ServerName localhost
  3. ServerAlias localhost
  4. ServerAdmin webmaster@localhost
  5. DocumentRoot /var/www/html/public_html
  6.  
  7. Alias /phpmyadmin /var/www/html/phpmyadmin
  8.  
  9. <Directory /var/www/html/phpmyadmin>
  10. Options -Indexes +FollowSymLinks
  11. AllowOverride All
  12. </Directory>
  13.  
  14. ErrorLog ${APACHE_LOG_DIR}/error.log
  15. CustomLog ${APACHE_LOG_DIR}/access.log combined
  16. </VirtualHost>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement