diff --git a/CHANGELOG.md b/CHANGELOG.md index 1a0520e3a..3d4fac4e3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -23,6 +23,9 @@ release channel, you can take advantage of these new features and fixes. allocation does not use these ports, many stations need to use ports in that range for legacy purposes, which should once again be possible. +- Docker users can now debug Slim Application Errors by editing the `SHOW_DETAILED_ERRORS` in the `azuracast.env` file, + reports should be submitted to our [issues](https://github.com/azuracast/azuracast/issues) section for review by our team. + ## Bug Fixes - A bug preventing SFTP from properly supporting SSH public keys has been fixed. diff --git a/azuracast.sample.env b/azuracast.sample.env index 324d498fb..225b0fb4e 100644 --- a/azuracast.sample.env +++ b/azuracast.sample.env @@ -31,6 +31,13 @@ AUTO_ASSIGN_PORT_MIN=8000 # See AUTO_ASSIGN_PORT_MIN. AUTO_ASSIGN_PORT_MAX=8499 +# This allows you to debug Slim Application Errors you may encounter +# By default, this is disabled to prevent users from seeing privileged information +# Please report any Slim Application Error logs to the development team on GitHub +# Valid options: true, false +SHOW_DETAILED_ERRORS=false + + # # Database Configuration # --