pma.conf 544 B

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