I set up a business site recently and I accept payments through both stripe and PayPal but the payment form looks exactly like shop’s so I wonder if people are just using a standard form or something.
- 0 Posts
- 12 Comments
No clue, but trusting one company with your info, rather than every company reduces your attack vector massively. My name, address, credit card info don’t have x chances of getting stolen or sold, but only 1.
If you’re in the U.S. you can use Privacy.com. No need to ever give name, address, or real credit card info ever again. It’s pretty nice.
tyler@programming.devto
Selfhosted@lemmy.world•Is they're an easy way to make my Jellyfin accessible outside of my home network for free?English
2·14 days agoLet me know if you have any trouble!
tyler@programming.devto
Selfhosted@lemmy.world•Is they're an easy way to make my Jellyfin accessible outside of my home network for free?English
5·15 days agoTailscale is incredibly easy. Install, start, sign in on both devices. Boom. Jellyfin from anywhere
tyler@programming.devto
Selfhosted@lemmy.world•Could somebody share a working Arr stack in docker with me?English
5·1 month agoabsolutely do not do that. I can almost guarantee that any sort of AI will try to open a port that shouldn’t be open or in general expose you to a massive security vulnerability.
tyler@programming.devto
Selfhosted@lemmy.world•Could somebody share a working Arr stack in docker with me?English
1·1 month agoAh ok this is the comment that needs to be in the main post. First things first:
You aren’t ‘installing’ radarr, sonarr, etc into any directories. They are containers, essentially entire operating systems located in a hidden folder on your server. You don’t ever touch these things directly, you only use docker commands to interface with them. There’s two ways to do that. Either directly running docker (
docker run linuxserver:radarr -p blah blah blah) or with a docker compose (docker compose up). The docker compose way is the ‘easy’ way to do it (actually the easiest is just using unraid and clicking install, but we’ll ignore that since so many people are telling you a billion ways to do things). Docker compose means you can specify all of your applications in a single file, and how they interact with each other. You will run one command to start all of them at once. And then they will read from whatever folders you configure in the service. This might be a bit confusing because up above you might see other people’s docker compose files and they specify things like this:sonarr: container_name: sonarr network_mode: "service:gluetun" image: ghcr.io/hotio/sonarr:latest volumes: - /mnt/drive/volumes/sonarr/config:/config - /mnt/nas/TV:/mnt/TV - /mnt/nas/Downloads:/downloads - /etc/localtime:/etc/localtime:ro depends_on: - gluetun restart: 'unless-stopped'and you would think that they’re configuring the sonarr locations for their tv and downloads, etc. But that is not what is happening. They are simply mapping a local path
/mnt/nas/TVto a path inside of the sonarr operating system/mnt/TV. This means that in Sonarr, in the web interface, you would configure the path/mnt/TV, NOT the path/mnt/nas/TV. You still have to configure EVERYTHING in the services themselves. All that docker is doing is setting up the operating system. Think of it like this, on a regular computer you can map network drives to letters like A, B, C, etc right? Well that’s exactly what you’re doing in docker, mapping ‘network’ (actually your main operating system) folders, to folders in the remote operating system (the one running in docker).In regards to having radarr rename things, you can have it do that, but you have to get the directory structure set up first, and you can run scripts to have nzbget or sabnzbd move things around for you. The experts on discord would be a much better help than most of us here I think, since they are all the devs on the project.
tyler@programming.devto
Selfhosted@lemmy.world•Could somebody share a working Arr stack in docker with me?English
1·1 month agoYou shouldn’t be manually moving anything, though sometimes it is necessary. But when you’re first getting started I really just recommend following the TRaSH guides and then redownloading a few things to make sure it works properly. It explains a lot and it’s exactly what the people on the discord will tell you to do for all of this before going any further.
tyler@programming.devto
Selfhosted@lemmy.world•Could somebody share a working Arr stack in docker with me?English
8·1 month agoI’m very confused what it was that they moved into individual folders. And also configuring the naming of movies and shows is done in radarr and sonarr, not in docker compose.
I highly recommend Trash Guides for configuring these services. https://trash-guides.info/
The link you provided even said it’s satire.
tyler@programming.devto
Selfhosted@lemmy.world•My new little home server + my first experiences with running a serverEnglish
0·4 months agoI’m pretty sure there’s some software to prevent what the other user said from happening as well.

I thought the exact same thing as you until I loaded my cart page and saw it and got confused lol.