diff --git a/Asking-for-help-or-report-a-problem.md b/Asking-for-help-or-report-a-problem.md index ec27f80..7f7ed78 100644 --- a/Asking-for-help-or-report-a-problem.md +++ b/Asking-for-help-or-report-a-problem.md @@ -10,7 +10,7 @@ If you actually found a valid bug please use [Github](https://github.com/morpheu - Clearly describe the problem. - Briefly describe your setup, including things like your OS and which version of Bazarr (System => Status => About). Upgrade to the latest if possible. - Tell us what you've tried already. -- Use the [[Logging and Log Files]] wiki article how to enable debug logging and where to find them. +- Use the [[Logging and Log Files]] wiki article how to enable debug logging and where to find them, how to provide them !!! - **Don't use screenshots of log files.** - **Don't copy/paste log files in the channel without the use of [code blocks](https://support.discord.com/hc/en-us/articles/210298617-Markdown-Text-101-Chat-Formatting-Bold-Italic-Underline-) we still prefer links pastebin or similar to the logs**. - **Don't just dump the `bazarr.log` in the channel, Nobody wants to download logs and open them in notepad!** diff --git a/Autostart-on-Linux-Windows-MacOS-FreeBSD.md b/Autostart-on-Linux-Windows-MacOS-FreeBSD.md index 1775be4..9eff132 100644 --- a/Autostart-on-Linux-Windows-MacOS-FreeBSD.md +++ b/Autostart-on-Linux-Windows-MacOS-FreeBSD.md @@ -48,6 +48,8 @@ If you installed it in another way in windows you can use the following. ### Linux +In any case, the user must have a home directory!!! + #### systemd service file for Debian Ubuntu > **Be aware that this is provided as-is without any support from the team.** diff --git a/Reverse-Proxy-Help.md b/Reverse-Proxy-Help.md index ee56ba7..1a852ff 100644 --- a/Reverse-Proxy-Help.md +++ b/Reverse-Proxy-Help.md @@ -15,6 +15,11 @@ proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection "Upgrade"; proxy_redirect off; + # Allow the Bazarr API through if you enable Auth on the block above + location /bazarr/api { + auth_request off; + proxy_pass http://127.0.0.1:6767/bazarr/api; + } } ```