Upgrading to Beaker 0.18¶
These instructions are for administrators upgrading a Beaker installation from 0.17 to 0.18.
Database changes¶
There are no database changes in this release.
Configuration changes¶
Force all log files named *.log
to text/plain
¶
The Apache configuration for serving Beaker log files now sets the MIME type
for all files with *.log
extension to text/plain
.
In /etc/httpd/conf.d/beaker-lab-controller.conf
replace the section:
<Files "console.log">
ForceType text/plain
</Files>
with:
<Files "*.log">
ForceType text/plain
</Files>
If you are using an archive server for log storage, you should also make the corresponding change to its configuration.