17 lines
370 B
Plaintext
17 lines
370 B
Plaintext
<VirtualHost *:80>
|
|
DocumentRoot /app/public
|
|
DirectoryIndex index.php
|
|
|
|
<Directory "/app/public">
|
|
Options FollowSymLinks MultiViews
|
|
AllowOverride All
|
|
RewriteEngine On
|
|
Require all granted
|
|
Order allow,deny
|
|
Allow from all
|
|
</Directory>
|
|
|
|
ErrorLog /dev/stderr
|
|
Customlog /dev/stdout combined
|
|
</VirtualHost>
|