pma.conf 599 B

12345678910111213141516171819
  1. <VirtualHost pma.omnimaga.org:80>
  2. UseCanonicalName Off
  3. ServerName pma.omnimaga.org
  4. VirtualDocumentRoot /var/www/phpmyadmin
  5. <Directory /var/www/phpmyadmin>
  6. AddHandler cgi-script .cgi
  7. Options +ExecCGI +Indexes +FollowSymLinks +MultiViews
  8. AllowOverride All
  9. RewriteEngine On
  10. # Require all granted
  11. Order allow,deny
  12. allow from all
  13. </Directory>
  14. ErrorLog ${APACHE_LOG_DIR}/error.log
  15. # Possible values include: debug, info, notice, warn, error, crit, alert, emerg.
  16. CustomLog ${APACHE_LOG_DIR}/access.log combined
  17. ServerAdmin [email protected]
  18. </VirtualHost>
  19. Listen pma.omnimaga.org:80