15 lines
475 B
Plaintext
15 lines
475 B
Plaintext
|
<VirtualHost *:80>
|
||
|
ServerName gamusino.local
|
||
|
DocumentRoot /Projects/GamUsino/Public
|
||
|
<Directory /Projects/GamUsino>
|
||
|
Options +Indexes +FollowSymLinks +MultiViews
|
||
|
DirectoryIndex index.html index.php
|
||
|
AllowOverride all
|
||
|
Order Allow,Deny
|
||
|
Allow from all
|
||
|
Require all granted
|
||
|
</Directory>
|
||
|
ErrorLog ${APACHE_LOG_DIR}/error_gamusino_80.log
|
||
|
CustomLog ${APACHE_LOG_DIR}/access_gamusino_80.log combined
|
||
|
</VirtualHost>
|