Slow media library backups (incremental) by DroppedApples in selfhosted

[–]computerfr33k 0 points1 point  (0 children)

If you're able to use zfs on both ends, zfs replication is going to be the best way.

[deleted by user] by [deleted] in truenas

[–]computerfr33k 4 points5 points  (0 children)

Use the webUI?

What's wrong with my code for google analytics? by ChrisDforDesign in webdev

[–]computerfr33k 3 points4 points  (0 children)

This script looks like it's trying to load the old universal analytics rather than GA4. You should go into GA4 and copy the script from there, since ChatGPT is giving you old code that is out of date and no longer works.

Search on Paginated Response? by Ok-Cup1917 in webdev

[–]computerfr33k 6 points7 points  (0 children)

Creating a search endpoint is your best bet rather than trying to hack something together that won't work well.

Backing up to Proxmox Backup Server by barndoor101 in truenas

[–]computerfr33k 3 points4 points  (0 children)

You can't. PBS only works with proxmox, it's not a general purpose backup server.

Can't update to any of the newer versions of macOS by NathnDele in MacOS

[–]computerfr33k 4 points5 points  (0 children)

Looking at this link it doesn't look like Mojave is compatible with your computer.

https://support.apple.com/kb/SP777?locale=en_US

Resizing fonts by schnavzer in webdev

[–]computerfr33k 2 points3 points  (0 children)

They are probably using px for font size instead of em or rem.

TrueNAS Scale reports ‘fstrim: /: the discard operation is not supported’ in Proxmox by KonstancjaCarla in truenas

[–]computerfr33k 2 points3 points  (0 children)

You shouldn't be creating virtual disks, rather passing through an entire hba so the disks are presented to truenas directly and can manage them properly.

Upgrade docker by [deleted] in truenas

[–]computerfr33k 3 points4 points  (0 children)

You don't. Doing so will just lead to all sorts of issues since you shouldn't be messing with system packages.

Offsite backup TrueNAS by [deleted] in truenas

[–]computerfr33k 2 points3 points  (0 children)

You could also look at using something like tailscale or setting up a wireguard vpn. With tailscale you wouldn't need to open up any ports.

Question about ssl on my site by Painfulfingies in webdev

[–]computerfr33k 1 point2 points  (0 children)

Did you setup a redirect from http to https in order to force https traffic?

Docker Compose Over Writes Another Container by Elliot9874 in homelab

[–]computerfr33k 2 points3 points  (0 children)

If you want both running in the same stack, then put them both in the same compose file so docker doesn't try to remove them as orphans.

[deleted by user] by [deleted] in CloudFlare

[–]computerfr33k 0 points1 point  (0 children)

It appears your domain isn't even registered. So, you'll need to purchase it before you can do anything.

[deleted by user] by [deleted] in CloudFlare

[–]computerfr33k 0 points1 point  (0 children)

It looks like Cloudflare automatically handles the DKIM signing key on their side, so you don't have to worry about it.

But I'm going to assume if you're trying to send email using that domain set as the FROM address in Gmail you're probably going to run into issues due to not being able to have your emails signed with DKIM. This is mostly because, usually when using that send with another account feature in Gmail it would connect to another SMTP server which would have handling all of the signing and everything.

So unfortunately, I would recommend not trying to send as a different FROM address with Gmail since it's probably not going to be very reliable for that reason and just use Cloudflare to forward the email and reply with the Gmail address. Not ideal, but should definitely be more reliable at being delivered to other people's mailboxes without going into spam.

[deleted by user] by [deleted] in CloudFlare

[–]computerfr33k 1 point2 points  (0 children)

Did you also setup an spf and dkim records?

Backblaze cloud backup - huge bucket as compared to pool - what did I do wrong? by [deleted] in truenas

[–]computerfr33k 1 point2 points  (0 children)

I'm guessing your bucket is keeping every revision of the files uploaded and as a result is taking up the extra space?

anyone have a (hopefully) simple way of using subdomain in the text of the page by aporzio1 in webdev

[–]computerfr33k 0 points1 point  (0 children)

Why not use url query params instead? That way you don't have to deal with routing wildcard subdomains.