Dunno how well it would work with kubernates internal networks, but my DNS is configured with different views for internal and external clients. So, when letsencrypt does a lookup, they get the external IP, but when an internal client looks up the same name, they get the internal IP. TLS is happy, because the certificate matches the name. I’m happy because it works even when the ISP is down.
- 0 Posts
- 13 Comments
tburkhol@slrpnk.netto
Selfhosted@lemmy.world•Self hosting: real game starts todayEnglish
5·19 days agovim index.html
<html><header><title>Welcome</title></header> <body><h1>Welcome</h1> <p>Here's my random thoughts and links I keep forgetting </body></html>:wqWhy would I want to learn wordpress, much less spin up a database, for that?
tburkhol@slrpnk.netto
Selfhosted@lemmy.world•[META] Should AI disclosure tags [AI], [NOT AI] be mandated when sharing projects?English
13·25 days agoThat seems a lot more useful than binary tags. There’s a wide spectrum between fully vibe-coded slop and hand-written with vim.
tburkhol@slrpnk.netto
Selfhosted@lemmy.world•DepthSight - a self-hosted, federated algorithmic trading platform with a visual strategy builder (AGPL)English
12·26 days agoIs the topic of financial/trading tools just completely off-limits here, even if it’s AGPL and self-hosted?
Not necessarily. The platform (lemmy, not just c/selfhosted) is full of anti-corporate leftists and anarchists. You’re more likely to find people who want to burn the stock market to the ground than to participate in it, esp highly speculative algo trading.
I’ve seen plenty of people ask about self-hosted personal finance or portfolio tracking, so there are people for whom your project might be relevant. Just seems more like a r/wallstreetbets kind of thing than a lemmy kind of thing.
tburkhol@slrpnk.netto
Selfhosted@lemmy.world•Weather Data: Small Steps - Big AmbitionsEnglish
9·28 days agoIf you’re in the Western hemisphere, NOAA has every-5-minute satellite images, using the form
https://cdn.star.nesdis.noaa.gov/GOES16/ABI/SECTOR/se/GEOCOLOR/600x600.jpg
https://www.star.nesdis.noaa.gov/GOES/index.php will help you pick which SECTOR is most relevant.
tburkhol@slrpnk.netto
Selfhosted@lemmy.world•How do you manage you DB in a docker environment?English
3·1 month agoI started doing the One True Database method because I got worried that the high write count on all the little db’s was abusing a raspberry pi’s SD card. Moved them all to a bigger server with NVME and mirroring to a RAID.
Not all the compose files make obvious how to reconfigure the db host. Homeassistant uses s a sqlite db built into the container, rather than a separate unit, but you can force it to use a remote db through its config file. May or may not be worth hiding db user/pass in a .env And sometimes there’s trouble restarting after power failure, depending on what order the database, pi, and various containers come back up.
I also feel it’s worthwhile. I feel better being able to check on all the databases. Feel better not writing to the SD card so much. Feel better offloading those megabytes and cpu cycles from the little pi. It’s been fun snooping through database structures. There have been a couple times where I decided to query one of the ccontain databases directly, or cross from one project to another, and it’s easier (for me) to give a different user privileges to the database and query some deep bit of data than to figure out how to extract it from an API or frontend.
I’m not even running that many services, but why would I want the overhead of 6 separate mysql instances when I could just have one?
tburkhol@slrpnk.netto
Selfhosted@lemmy.world•What to do after getting a domain name?English
3·1 month agoA records return the numerical address of a name.
CNAME returns a different name for a name. Basically ‘synonym’ so the maintainer only has to change the one master, A record when the IP address changes. Convenient to use CNAME to point www.example.com to example.com, but you can use it just as well to point example.com at my.private.host.xyz You can even chain multiple CNAMEs to make it easier to manage a complex backend structure while presenting a simple address to users.
tburkhol@slrpnk.netto
Selfhosted@lemmy.world•This community isn't your personal adviserEnglish
8·1 month agoDoesn’t work that way on lemmy: if they delete the post, then the alt’s shilling disappears, too.
tburkhol@slrpnk.netto
Selfhosted@lemmy.world•This community isn't your personal adviserEnglish
8·1 month agoor at least change the title to [solved] with a link to the comment that worked.
tburkhol@slrpnk.netto
Selfhosted@lemmy.world•This community isn't your personal adviserEnglish
55·1 month agoUncheck “Send notifications to Email” in your settings. Or get a 3rd party app with a notifications setting.
tburkhol@slrpnk.netto
Selfhosted@lemmy.world•This community isn't your personal adviserEnglish
56·1 month agoCould they be astroturfing, looking for a specific solution to fill search engines with their own product placement, then deleting because most of the comments are other FOSS solutions?
tburkhol@slrpnk.netto
Selfhosted@lemmy.world•How many and how much are your subscriptions?English
2·2 months agoNot who you replied ti, but I’ve been on purelymail for about a year and a half. No complaints. $10.yr is great, and their billing statements claim I could be around $3/year if I switched to their advanced billing. I have nagging concern that they’re hosted on AWS, and if your goal is to completely free yourself of US tech giants, then purelymail won’t.
I like Cory Doctorow’s take: AI is good for single-use, personal code to solve an immediate problem, and terrible for long-term, production projects. I imagine there’s a bunch of neophytes out there who use AI to create their first project, find out that github exists, and thinks someone else must be having the same problem they just solved, so why not release it to the public?