20 lines
391 B
Plaintext
20 lines
391 B
Plaintext
|
<VirtualHost localhost:80>
|
||
|
ServerAdmin local@dym.sh
|
||
|
ServerName it-bike.local
|
||
|
ServerAlias *.it-bike.local
|
||
|
|
||
|
DocumentRoot /var/www/it-bike
|
||
|
<Directory "/var/www/it-bike">
|
||
|
Options FollowSymLinks
|
||
|
AllowOverride All
|
||
|
Order allow,deny
|
||
|
Allow from all
|
||
|
</Directory>
|
||
|
|
||
|
DirectoryIndex index.php
|
||
|
|
||
|
HostnameLookups Off
|
||
|
UseCanonicalName Off
|
||
|
ServerSignature On
|
||
|
</VirtualHost>
|