Watcher and Cardigann
|
Posts: 11
Threads: 3
Joined: Jan 2017
Reputation:
0
[Solved]
Mar 28, 2017, 06:15 PM
Hello and thanks for all your excellents guides
I discovered these two applications
Watcher : https://github.com/nosmokingbandit/watcher
and
Cardigann : https://github.com/cardigann/cardigann
This two apps don't need mono and provide excellent documentation.
If you have the time to make a guide as you are used to do, I will be glad of this  .
Posts: 1,646
Threads: 2
Joined: Aug 2015
Reputation:
42
[Solved]
Mar 28, 2017, 07:05 PM
Thanks Kilroy, Watcherr is already on my list actually but I will look into Cardigann too
Posts: 11
Threads: 3
Joined: Jan 2017
Reputation:
0
[Solved]
Mar 28, 2017, 07:25 PM
Thanks to you
Posts: 1,646
Threads: 2
Joined: Aug 2015
Reputation:
42
[Solved]
Mar 28, 2017, 07:26 PM
(This post was last modified: Mar 28, 2017, 07:27 PM by Mike.)
(Mar 28, 2017, 07:25 PM)kilroy Wrote: Thanks to you 
Here is watcher as rough guide
Code:
sudo apt-get update
sudo apt-get install python2.7 git python-levenshtein -y
adsf
Code:
sudo git clone https://github.com/nosmokingbandit/watcher /opt/watcher
Code:
sudo chown -R pi:pi /opt/watcher
asdf
Code:
python2.7 watcher.py --address 0.0.0.0
a
Code:
sudo nano /etc/systemd/system/watcher.service
asdf
Code:
[Unit]
Description=Watcher Daemon
[Service]
User=pi
Group=pi
Type=forking
GuessMainPID=no
ExecStart=/usr/bin/python2.7 /opt/watcher/watcher.py --address 0.0.0.0 -d
Restart=no
[Install]
WantedBy=multi-user.target
asfd
Code:
sudo systemctl enable watcher
sadf
Code:
sudo service watcher start
Posts: 11
Threads: 3
Joined: Jan 2017
Reputation:
0
[Solved]
Mar 28, 2017, 07:56 PM
Thanks for it , i also saw this on watcher's wiki.
What is the -d argument at the end off execstart's line ?
We also have the reverse proxy for nginx
Code:
location ~ ^/**location** {
proxy_pass http://**ADDRESS**:**PORT**;
proxy_pass_header Set-Cookie;
proxy_pass_header P3P;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
}
What do you think of this application in use, compared to radarr or couchpotato ?
Posts: 11
Threads: 3
Joined: Jan 2017
Reputation:
0
[Solved]
Apr 11, 2017, 06:08 PM
(This post was last modified: Apr 11, 2017, 07:34 PM by kilroy.)
Hello and thanks for the guide
Watcher has officially been ported to Python 3 and the current repo will no longer be supported. The new repo at GitHub.
On the github's wiki page, we can see
"Watcher currently supports deluge, Tranmsission, QBittorrent, and rTorrent for Torrents."
I need french tracker so I have not tested it yet.
I am waiting for cardigann, for the moment I can not get it to work in reverse proxy with nginx
Posts: 12
Threads: 3
Joined: Jan 2017
Reputation:
0
[Solved]
Apr 17, 2017, 07:52 PM
(Mar 28, 2017, 07:26 PM)Mike Wrote: (Mar 28, 2017, 07:25 PM)kilroy Wrote: Thanks to you 
Here is watcher as rough guide 
Hey Mike,
Thanks for the great guide. I see they have updated Watcher to Python 3.
Could you let me know what steps I need to update to that?
Thanks for any help!
Posts: 45
Threads: 4
Joined: Mar 2017
Reputation:
5
[Solved]
Apr 18, 2017, 01:09 AM
(Apr 11, 2017, 06:08 PM)kilroy Wrote: Hello and thanks for the guide 
Watcher has officially been ported to Python 3 and the current repo will no longer be supported. The new repo at GitHub.
On the github's wiki page, we can see
"Watcher currently supports deluge, Tranmsission, QBittorrent, and rTorrent for Torrents."
I need french tracker so I have not tested it yet.
I am waiting for cardigann, for the moment I can not get it to work in reverse proxy with nginx
I haven't looked at cardigann yet but, I have had issues with nginx in the past. The first two things I look at is:
1) check the "reverse" file make sure where you define the redirect for cardigann, you have the correct protocol (http/https) if you have it as https and your target isnt configured for it, it wont work. Some apps wont work with https regardless. I had this issue with sonarr. Possibly just me? haha. Make sure there are no unnecessary white spaces as well.
2) Again, never touched cardigann, but in sonarr and radarr beneath where you define the por, it calls for "URL base" which is the path after your DDNS/IP http://your.DDNS.net/<URL_BASE>. For these two at least, this is a requirement or rev prox wont work.
Hope this helps. sorry for shite typing.
Ladies and gentleman, take my advice. Pull down your pants and slide on the ice. -Sidney Freidman
Posts: 11
Threads: 3
Joined: Jan 2017
Reputation:
0
[Solved]
Apr 18, 2017, 04:33 PM
(Apr 18, 2017, 01:09 AM)Lt Hawk Wrote: (Apr 11, 2017, 06:08 PM)kilroy Wrote: Hello and thanks for the guide 
Watcher has officially been ported to Python 3 and the current repo will no longer be supported. The new repo at GitHub.
On the github's wiki page, we can see
"Watcher currently supports deluge, Tranmsission, QBittorrent, and rTorrent for Torrents."
I need french tracker so I have not tested it yet.
I am waiting for cardigann, for the moment I can not get it to work in reverse proxy with nginx
I haven't looked at cardigann yet but, I have had issues with nginx in the past. The first two things I look at is:
1) check the "reverse" file make sure where you define the redirect for cardigann, you have the correct protocol (http/https) if you have it as https and your target isnt configured for it, it wont work. Some apps wont work with https regardless. I had this issue with sonarr. Possibly just me? haha. Make sure there are no unnecessary white spaces as well.
2) Again, never touched cardigann, but in sonarr and radarr beneath where you define the por, it calls for "URL base" which is the path after your DDNS/IP http://your.DDNS.net/<URL_BASE>. For these two at least, this is a requirement or rev prox wont work.
Hope this helps. sorry for shite typing.
Thanks for tips
I found "baseurl" in config.json file but nothing works.
After a quick search, i found this post on github project's page https://github.com/cardigann/cardigann/issues/90
It seems that the option is not yet implemented.
I will wait for this.
Thanks for your help
Posts: 11
Threads: 3
Joined: Jan 2017
Reputation:
0
[Solved]
Apr 22, 2017, 07:15 PM
Thanks for the guides
|
|
Recent Posts
|
Can Be BeNaughty Legit? 7 Things You Want to Lea...
jonesPhedra Apr 03, 2025, 08:59 AM
|
How to set up Sonarr for auto renaming and impor...
goalken Mar 26, 2025, 04:50 PM
|
How to use Ubuntu server 14.04 as Airplay reciev...
jonesPhedra Mar 25, 2025, 03:48 AM
|
friday night funkin
jonesPhedra Mar 24, 2025, 08:48 AM
|
Split tunneling -> IPtorrentCheck tracker error
jonescelinaa Feb 18, 2025, 09:18 AM
|
Latest unread posts | Unanswered posts |
|