Asparagus0098
@Asparagus0098@sh.itjust.works
- Comment on How would I set up local DNS or DNS rewrite 4 weeks ago:
Do you actually need to move the admin ui off of port 80/443 if you are just forwarding ports? I don’t know too much about port forwarding since I use Tailscale because of CGNAT.
- Comment on How would I set up local DNS or DNS rewrite 4 weeks ago:
You don’t need 2 reverse proxies as others have said. What I did is just add a DNS rewrite entry on my adguardhome instance to point my domain.tld to the LAN IP of my reverse proxy.
- Comment on What host names do you use? 4 weeks ago:
I use some generic names.
Phone: phone Current Laptop: fedora Old laptop: laptop Router: openwrt
- Comment on Question about quadlets and kube play 4 weeks ago:
I ran a podman quadlet setup as a test some time ago. My setup was a little like this:
- Create a pod if the app uses multiple containers
- Create a seperate network for each app (either a single container or multiple containers grouped in a pod)
- Add the reverse proxy container to all networks
- I don’t expose any ports to the host unless necessary
If you create a new network in podman you can access other containers and pods in the same network with their name like so
container_name:port
orpod_name:port
. This functionality is disabled in the default network by default.
- Comment on Tailscale + public domain 4 weeks ago:
If you run adguard home it’s pretty easy. Just add a DNS rewrite to your local IP.
- Comment on Tailscale + public domain 4 weeks ago:
How are you running nginx and immich exactly? With containers or on the host?
- Comment on What RSS feeds are you subscribed to? 4 weeks ago:
Some feeds I follow
- Adventures in Linux and KDE: pointieststick.com/feed/
- F-Droid: f-droid.org/feed.xml
- GamingOnLinux: www.gamingonlinux.com/article_rss.php
- Project Zomboid: projectzomboid.com/blog/feed/
- This Week in KDE Apps blogs.kde.org/categories/…/index.xml
- This Week in Plasma: blogs.kde.org/categories/…/index.xml
- Comment on Could you explain to me why you like silent hill 1? (Spoilers) 5 weeks ago:
I just liked the atmosphere of the game and enjoyed it despite it’s flaws. I remember having to beat cybil with only melee because I had no ammo.
- Comment on What do you use for notes? 1 month ago:
Obsidian with syncthing for syncing between my phone and PC.
- Comment on What's the game you play when nothing else sounds good? 3 months ago:
Phigros
It’s a mobile rhythm game without ads and in-app purchases. It’s also completely offline so I don’t need an internet connection to play.
- Comment on Podman or rootless docker? 4 months ago:
Yeah quadlets are pretty cool. I have them organized into folders for each pod.
podman auto-update
is also another pretty nice feature. I don’t use the systemd timer for auto-update. Instead I just dopodman auto-update --dry-run
to check for updates and update my quadlet files and configs if any changes are required then I run the updates withpodman auto-update
. - Comment on Podman or rootless docker? 4 months ago:
podman-generate-systemd
is outdated. The currently supported way to run podman containers using systemd services would be Quadlet files. - Comment on Podman or rootless docker? 4 months ago:
Any reason why you use compose and not quadlets?