19 lines
474 B
Plaintext
19 lines
474 B
Plaintext
|
<VirtualHost *:80>
|
||
|
ServerName localhost
|
||
|
|
||
|
DocumentRoot /var/www/project/public
|
||
|
DirectoryIndex /index.php
|
||
|
|
||
|
<Directory /var/www/project/public>
|
||
|
AllowOverride None
|
||
|
Order Allow,Deny
|
||
|
Allow from All
|
||
|
</Directory>
|
||
|
|
||
|
# <Directory /var/www/project/public/bundles>
|
||
|
# FallbackResource disabled
|
||
|
# </Directory>
|
||
|
ErrorLog /var/log/apache2/project_error.log
|
||
|
CustomLog /var/log/apache2/project_access.log combined
|
||
|
</VirtualHost>
|