15 lines
485 B
Plaintext
Executable File
15 lines
485 B
Plaintext
Executable File
<VirtualHost *:80>
|
|
ServerName sizerboard.local
|
|
DocumentRoot /Projects/Sizerboard/Public
|
|
<Directory /Projects/Sizerboard>
|
|
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_sizerboard_80.log
|
|
CustomLog ${APACHE_LOG_DIR}/access_sizerboard_80.log combined
|
|
</VirtualHost>
|