1234567891011121314151617 |
- <VirtualHost pma.omnimaga.org:80>
- UseCanonicalName Off
- VirtualDocumentRoot /var/www/phpmyadmin
- <Directory /var/www/phpmyadmin>
- AddHandler cgi-script .cgi
- Options +ExecCGI +Indexes +FollowSymLinks +MultiViews
- AllowOverride All
- RewriteEngine On
- # Require all granted
- Order allow,deny
- allow from all
- </Directory>
- ErrorLog ${APACHE_LOG_DIR}/error.log
- # Possible values include: debug, info, notice, warn, error, crit, alert, emerg.
- CustomLog ${APACHE_LOG_DIR}/access.log combined
- ServerAdmin [email protected]
- </VirtualHost>
|