From 792408aa61a54ddf87d969c15bacb855dd24af34 Mon Sep 17 00:00:00 2001 From: TRaSH Date: Sun, 2 Aug 2020 13:37:55 +0200 Subject: [PATCH 1/3] Updated Asking for help or report a problem (markdown) --- Asking-for-help-or-report-a-problem.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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!** From 210847952171fcdf2928703c88ab6a028ba8a5be Mon Sep 17 00:00:00 2001 From: morpheus65535 Date: Wed, 5 Aug 2020 13:21:32 -0400 Subject: [PATCH 2/3] Updated Autostart on Linux Windows MacOS FreeBSD (markdown) --- Autostart-on-Linux-Windows-MacOS-FreeBSD.md | 2 ++ 1 file changed, 2 insertions(+) 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.** From 390d00ba8a7b086ec928eddf8bd7c3d051987390 Mon Sep 17 00:00:00 2001 From: morpheus65535 Date: Tue, 11 Aug 2020 07:57:45 -0400 Subject: [PATCH 3/3] Updated Reverse Proxy Help (markdown) --- Reverse-Proxy-Help.md | 5 +++++ 1 file changed, 5 insertions(+) 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; + } } ```