20 lines
504 B
Plaintext
20 lines
504 B
Plaintext
<VirtualHost *:80>
|
|
ServerName localhost
|
|
|
|
DocumentRoot /var/www/project/public
|
|
DirectoryIndex /index.php
|
|
|
|
<Directory /var/www/project/public>
|
|
AllowOverride All
|
|
<IfModule mod_rewrite.c>
|
|
RewriteEngine On
|
|
</IfModule>
|
|
</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> |