1
0
Fork 0
mirror of https://github.com/morpheus65535/bazarr synced 2025-01-03 13:35:18 +00:00
TRaSH 2020-08-16 17:52:06 +02:00
commit fda895fece
3 changed files with 8 additions and 1 deletions

@ -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!**

@ -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.**

@ -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;
}
}
```