20 lines
474 B
Plaintext
20 lines
474 B
Plaintext
<VirtualHost *:8000>
|
|
DocumentRoot /app/code/p
|
|
AllowEncodedSlashes On
|
|
|
|
LogFormat "%{X-Forwarded-For}i %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" proxy
|
|
CustomLog "|/bin/cat" proxy
|
|
ErrorLog "|/bin/cat"
|
|
|
|
<Directory /app/code/p/>
|
|
Options +FollowSymLinks
|
|
AllowOverride All
|
|
Require all granted
|
|
|
|
<IfModule mod_php7.c>
|
|
php_value memory_limit 64m
|
|
</IfModule>
|
|
|
|
</Directory>
|
|
</VirtualHost>
|