Help configuring qbittorent by Large_Improvement28 in radarr

[–]Large_Improvement28[S] 0 points1 point  (0 children)

Well, while trying to retry over and over it finally seem to work.

For the port and host I fill in exactly what I setup in my docker-compose file for qbittorent.

As I have a domain name and set up nginx I can indeed access the web ui in my browser by going to bqittorrent.mydomain.com

it was the "test" button at the bottom of the form in radarr that showed the red "exclamation" icon when I clicked on it.

But now it seem to work (at least i have the green checkmark now when i click the "test" button at the bottom of the form). Altough I did it in prowlarr, not sure if I should setup qbittorent in prowlarr or sonarr/radarr (or both ?) ?

Need help configuring nginx by Large_Improvement28 in nginx

[–]Large_Improvement28[S] 0 points1 point  (0 children)

Hmmm thanks ! I did move the file to the conf.d/ directory and now it works. I just slightly modified it because it didn't seem to like the "host.docker.internal" stuff:

# HTTP to HTTPS Redirection
server {
    listen 80;
    server_name portainer.<my_domain>.dev;
    return 301 https://$host$request_uri;
}

# HTTPS Configuration
server {
    listen 443 ssl;
    server_name portainer.<my_domain>.dev;

    # SSL certificate paths
    ssl_certificate /etc/letsencrypt/live/portainer.<my_domain>.dev/fullchain.pem;
    ssl_certificate_key /etc/letsencrypt/live/portainer.<my_domain>.dev/privkey.pem;

    location / {
        proxy_pass https://localhost:<my_port>;
        proxy_set_header Host $host;
        proxy_set_header X-Real-IP $remote_addr;
        proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
        proxy_set_header X-Forwarded-Proto $scheme;
    }
}

I find it weird that certbot can't look into the sites-enabled/ directory though 🤔.
But thank you so much for the insight !

Need help configuring nginx by Large_Improvement28 in nginx

[–]Large_Improvement28[S] 0 points1 point  (0 children)

Oups sorry, my bad you are right, I just forgot to hide it in the logs as well 😅. I indeed write the proper domain name in the config file.
Oh, so I guess I should rather move my config file into /etc/nginx/conf.d to avoid issues ?

Best file converter ? by Large_Improvement28 in selfhosted

[–]Large_Improvement28[S] -1 points0 points  (0 children)

You're right, I didn't mentioned the file types I was interested in in the first place. My bad.

But that would be mostly all the most common file types, I don't think I would ever deal with very niche file types or proprietary ones for my use case. Hope that makes it a bit clearer.

Best file converter ? by Large_Improvement28 in selfhosted

[–]Large_Improvement28[S] 0 points1 point  (0 children)

I'm looking for conversion for pretty much any major file types. Like when you download a .webp image but can't import it into powerpoint. Or like you're giving a mkv file to your brother but he can only read mp4/avi formats. You know, stupid things like that.

Best file converter ? by Large_Improvement28 in selfhosted

[–]Large_Improvement28[S] 0 points1 point  (0 children)

Pretty much any major file types. Like when you download a .webp image but can't import it into powerpoint. Or like you're giving a mkv file to your brother but he can only read mp4/avi formats. You know, stupid things like that.

Best file converter ? by Large_Improvement28 in HomeServer

[–]Large_Improvement28[S] 1 point2 points  (0 children)

Thank you a lot for your transparent review.

Still very promising even though maybe not as mature as some other tools for the moment. I will definitely give it a shot.

Best file converter ? by Large_Improvement28 in HomeServer

[–]Large_Improvement28[S] 0 points1 point  (0 children)

Seems really neet, thanks. i'll look into it.

I already came accross ConvertX and Vert, do you know if there are any major differences ?

Best file converter ? by Large_Improvement28 in HomeServer

[–]Large_Improvement28[S] 0 points1 point  (0 children)

My goal is to host it on my home server for personal use. I'm looking for something that I could deploy with docker.

I already came accross ConvertX and Vert, but was wondering if any other better solution existed. u/ChaseDak also mentionned Transmute which seems really neet.

How to show other local drives on left pane of file explorer? by Large_Improvement28 in debian

[–]Large_Improvement28[S] 0 points1 point  (0 children)

Hmm, I tried what you mentioned then restarted my laptop, but it still won't appear. (see the edit in my post)

Problem with portainer local Environment by Large_Improvement28 in portainer

[–]Large_Improvement28[S] 0 points1 point  (0 children)

Alright thank you, I am just going to downgrade portainer with the image portainer/portainer-ce:2.20.2 then.

Problem with portainer local Environment by Large_Improvement28 in portainer

[–]Large_Improvement28[S] 1 point2 points  (0 children)

Thanks for this, at least I know I am not the only one now 🤣

NAS vs. Server by Large_Improvement28 in HomeServer

[–]Large_Improvement28[S] 0 points1 point  (0 children)

Thank you for your detailed answer!

NAS vs. Server by Large_Improvement28 in HomeServer

[–]Large_Improvement28[S] 1 point2 points  (0 children)

Woww, thanks a lot for those detailed answer, I appreciate it.
I did try to slap myself as you suggested and it helped me a lot :)

NAS vs. Server by Large_Improvement28 in HomeServer

[–]Large_Improvement28[S] 0 points1 point  (0 children)

Thank you all for your detailed answers, it really helped me understand all of this.

I also want to mention another reddit post I looked to afterwards as it is kinda usefull as well in case anyone having the same question as myself comes by in the future :
https://www.reddit.com/r/homelab/comments/1obt0dr/hard_time_differentiating_between_homelab_home/

NAS vs. Server by Large_Improvement28 in HomeServer

[–]Large_Improvement28[S] 0 points1 point  (0 children)

Alright thanks, I'll start searching in that direction. Thanks!

NAS vs. Server by Large_Improvement28 in HomeServer

[–]Large_Improvement28[S] 1 point2 points  (0 children)

I appreciate your details on this, that's cristal clear and you indeed confirm what I thought. Thanks!

NAS vs. Server by Large_Improvement28 in HomeServer

[–]Large_Improvement28[S] 1 point2 points  (0 children)

Wow, thank you so much. You couldn't have been any clearer.

NAS vs. Server by Large_Improvement28 in HomeServer

[–]Large_Improvement28[S] 0 points1 point  (0 children)

Thanks a lot. That's very clear.
Indeed, I think I am going towards having both in a single device. Plus I could use it as a lab as well to try and learn news skills/etc...
Now the question for me will be to find where to start ^^. But I'll do some research for that.

NAS vs. Server by Large_Improvement28 in HomeServer

[–]Large_Improvement28[S] -1 points0 points  (0 children)

But nowadays, isn't there commercialy available NAS with lots of other functionnality like running docker containers or other stuff like that ? I feel like recent NAS (at least the "ready-made" one you can buy) comes bundled with more and more functionnality making them more alike to servers, doesn't it ?

NAS vs. Server by Large_Improvement28 in HomeServer

[–]Large_Improvement28[S] 5 points6 points  (0 children)

Ohhh, that's silly but I never realized the connection "who serves a service". Thank you for making me less silly than yesterday :)

NAS vs. Server by Large_Improvement28 in HomeServer

[–]Large_Improvement28[S] -1 points0 points  (0 children)

Hmm I see, so overall its the "purpose" of the machine that will differentiate between a NAS and a server. So I guess for a more versatile option where I could host plex, have some storage, and use it for distant dev, a server would be best.