tjn
tjn
About
- Username
- tjn
- Joined
- Visits
- 39
- Last Active
- Roles
- Member
- Thanked
- 19
Comments
-
So when you set the DNS server in System Preferences -> Network -> Wifi/Ethernet -> Advanced -> DNS, you're saying they change everytime you reconnect?
-
You can do it in Caddy with something that looks like: yourdomain.com { templates header Content-Type text/plain respond "{{.RemoteIP}}"}
-
(Quote) This is so cool!
-
Under Settings --> Nework make sure you add your domain or IPv6 address under "Custom Server access URLs" in the format of http://[full-ipv6-address-with-no-abbreviations]:32400 OR, put your plex server behind CloudFlare and create a p…
-
@vitobotta you making your own docker images?
-
I like and use Outline https://www.getoutline.com/ https://github.com/outline/outline
-
(Quote) If I'm not mistaken, you need to configure more things locally, like authenticating to your account, the tunnel token, the hostnames you want to reverse proxy to, etc...
-
What does your local configuration .yml file look like? Did you setup your ingress rules?
-
I would definitely use diferrent databases for all three. Better practice, easier to manage and backup.
-
Why wouldn't you use it? Edit: if combined with a good password manager (not Lastpass, for example - in my opinion) it's pretty easy to manage.
-
Are you looking for a web interface to SSH into all your servers? Or manage them? Or look into their uptime? Or all of the above?
-
This is what I use for my Proxmox installations on Hetzner - it's been working really well! pfSense WAN on vmbr0 and LAN on vmbr100. When setting up pfSense, I assign it one of the additional IPs. The below assumes that your additional IPs are on t…
-
Not sure what quality of management you'll get for $20/month to be honest, unless you're really just looking for OS/panel updates.
-
I came accross this mailing list manager today, thought you might find it interesting - open source and free! https://listmonk.app/
-
Sendy + SES is great. I've never tried it but EmailOctopus has a version that allows you to use your own SES account. https://emailoctopus.com/pricing-connect
-
(Quote) Just to clarify, your question is if the command above can be added to an account's crontab via a compromised WordPress installation? In theory, yes - but that would mean that WordPress, more accurately that the cPanel account's user and PH…
-
Don't mail.baby just use MailChannels? Or is that their fallback?
-
Off-topic, but if anyone is looking for reports/analytics for SES - check out https://github.com/Nikeev/sesdashboard I've been using it for a while now, it's pretty good.
-
(Quote) As long as you're not sending insane amounts of emails, MX route is great for this. They do have a hard limit of 300 emails/hour. (Quote) +1
-
@vyas can you tell us a bit more about what your cronjob does?
-
(Quote) I'm here hoping for the same. Somehow though, I don't feel like the savings will trickle down to the wider population. (Quote) Didn't manufacturers like NVIDIA take steps to prevent their newer GPU's from being used for crypto mining?
-
(Quote) I like it! I just wish databases were more "modern" and easier to handle from a sysadmin/DevOps perspective. Then again, short of using flat files, I can't imagine what that would look like.
-
I use a self-hosted git repo (gitea) with a post-receive hook and the script below to rsync files over to my production servers. This assumes that your staging DB and production DB don't need to match up (in my case they rarely do). #!/bin/bashREPO…