freshrss-app/apache/freshrss.conf

22 lines
499 B
Plaintext

ServerName %{HTTP_HOST}
<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>