18 lines
735 B
Plaintext
18 lines
735 B
Plaintext
|
<VirtualHost *:80>
|
||
|
ServerName phpmyadmin.sd.dev
|
||
|
UseCanonicalName On
|
||
|
UseCanonicalPhysicalPort On
|
||
|
DocumentRoot /home/vhosts/phpmyadmin
|
||
|
<Directory /home/vhosts/phpmyadmin/>
|
||
|
AllowOverride all
|
||
|
Order allow,deny
|
||
|
allow from all
|
||
|
</Directory>
|
||
|
# Available loglevels: trace8, ..., trace1, debug, info, notice, warn,
|
||
|
# error, crit, alert, emerg.
|
||
|
# It is also possible to configure the loglevel for particular
|
||
|
# modules, e.g.
|
||
|
LogLevel error
|
||
|
ErrorLog /home/vhosts/apachelog/phpmyadmin-error.log
|
||
|
CustomLog /home/vhosts/apachelog/phpmyadmin-access.log combined
|
||
|
</VirtualHost>
|