freshrss-app/apache/freshrss.conf

17 lines
408 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
</Directory>
</VirtualHost>