mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-03-31 20:51:30 -04:00
It looks like overrides of CustomLog, ErrorLog, Listen did not do the job fully. Updated to comment out those lines in httpd.conf. Fixes the fact that logs were kept in /var/log/apache2/ (instead of being only given via STDOUT to Docker logs) and the "internal dummy connection" bug over IPv6 (Docker is typically only IPv4).
28 lines
710 B
Plaintext
28 lines
710 B
Plaintext
<IfModule !deflate_module>
|
|
LoadModule deflate_module modules/mod_deflate.so
|
|
</IfModule>
|
|
<IfModule !expires_module>
|
|
LoadModule expires_module modules/mod_expires.so
|
|
</IfModule>
|
|
<IfModule !headers_module>
|
|
LoadModule headers_module modules/mod_headers.so
|
|
</IfModule>
|
|
<IfModule !mime_module>
|
|
LoadModule mime_module modules/mod_mime.so
|
|
</IfModule>
|
|
<IfModule !rewrite_module>
|
|
LoadModule rewrite_module modules/mod_rewrite.so
|
|
</IfModule>
|
|
|
|
ServerName freshrss.localhost
|
|
Listen 0.0.0.0:80
|
|
DocumentRoot /var/www/FreshRSS/p/
|
|
CustomLog /dev/stdout combined
|
|
ErrorLog /dev/stderr
|
|
AllowEncodedSlashes On
|
|
|
|
<Directory /var/www/FreshRSS/p>
|
|
AllowOverride AuthConfig FileInfo Indexes Limit
|
|
Require all granted
|
|
</Directory>
|