freshrss-app/apache/freshrss.conf

19 lines
378 B
Plaintext
Raw Normal View History

2017-02-17 08:45:48 +00:00
<VirtualHost *:8000>
DocumentRoot /app/code/p
2017-04-27 10:14:07 +00:00
AllowEncodedSlashes On
2017-02-17 08:45:48 +00:00
ErrorLog /dev/stderr
CustomLog /dev/stdout combined
<Directory /app/code/p/>
2017-02-17 08:45:48 +00:00
Options +FollowSymLinks
AllowOverride All
Require all granted
<IfModule mod_php7.c>
php_value memory_limit 64m
</IfModule>
</Directory>
</VirtualHost>