sk
@sk@hub.utsukta.org
This is a remote user, information on this page may be incomplete. View at Source ↗
- Comment on lightweight blog ? 1 week ago:have you tried hubzilla? its multipurpose.
- Comment on Self-hosted SSO 2 weeks ago:Authentik! i've been using it since over a year and its been a wonderful experience. supports many protocols and is updated regularly, as a beginner i didnt have difficulty setting it up, has decent documentation for integrations.
- Comment on Is it possible or is there a guide on how to revamp this forgotten TV box (Arris VIP4302) into a home server? 4 weeks ago:I have a similar tv box running on rk3328. You'll need to flash the rom and put armbian on it. Search by model and you'll find some guide on armbian forums. Mine had 4gb ram but uses only about 600mb running my hubzilla server on docker. And 30gh storage is decent for small projects.
- Comment on What host names do you use? 4 weeks ago:I went with alpha, beta, gamma ...
- Comment on What RSS feeds are you subscribed to? 4 weeks ago:The following for reading and listening:
- NPR Podcasts
- The marginalian
- Aeon Magazine
- JSTOR Daily
and some youtube channels, research journals, subreddits.
- Comment on How do you keep track of vulnerabilities? 4 weeks ago:i subscribe to the release page of the repo in my rss reader. simple and effective.
- Comment on Nextcloud Hub 10 – your unified, modular digital workspace - Nextcloud 5 weeks ago:always the same story :(
- Comment on which softwares can I self host without public IP? 5 weeks ago:@whoareu cloudflare tunnel can easily help you do that. the only limitation is your domain will need to be from cloudflare. It works well, I am hosting an instance without any public IP and without exposing any ports.
- Comment on Digital Homeownership 4 months ago:This was one of my main needs when i started to look for a platform on the fediverse, while wordpress was the closest thing to what i needed it had partial support for federation but thankfully a little known gem called 'hubzilla' turned out to be exactly what i needed to set up my digital home.
- Comment on Static site generator for an idiot who doesn't want to learn a new templating language just to have a blog? 5 months ago:I found pelican to be quite simple to start with and depending on how deep you want to go it can be quite customizable. Being proficient in python helps.
- Comment on Where to start as a beginner 5 months ago:I would suggest to familiarize yourself with basics of networking and linux first, something like freecodecamp has decent tutorials and you would learn a lot from just a few chapters (#^https://www.youtube.com/watch?v=qiQR5rTSshw%29%2C and there are also some youtubers who have self hosting tutorials that you can follow along and learn (Jim's garage is my favorite since i learnt a lot from him and his discord channel is also a helpful place for discussions, questions, etc.). So join such communities and you'll learn at your pace.
- Comment on 2024 Self-Host User Survey Results 5 months ago:@𝘋𝘪𝘳𝘬 I think thats the fun of it, different people building tools as per their knowledge/requirements, with time i'm sure someone will make something that you might find suitable :)
- Comment on 2024 Self-Host User Survey Results 5 months ago:
- Comment on 2024 Self-Host User Survey Results 5 months ago:@CosmicTurtle0 hosting a single user federated blog is also an option, you are only responsible for yourself and your friends you host. Not necessary to host public.
- Comment on How do I redirect to a /path with Nginx Proxy Manager? 5 months ago:@Sunny' 🌻 that must not happen, did you remove the custom location from before? The above is working with my pihole setup
- Comment on How do I redirect to a /path with Nginx Proxy Manager? 5 months ago:
- Comment on How do I redirect to a /path with Nginx Proxy Manager? 5 months ago:Add the following in Advanced tab
location / {
return 301 /admin;
}
location /admin {
proxy_pass [url=http://<Pi-hole-IP>:<Pi-hole-Port>/admin;]http://<Pi-hole-IP>:<Pi-hole-Port>/admin;[/url]
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
}
replace the IP and port - Comment on Randomly getting ECH errors on self-hosted services. 6 months ago:this issue is an ongoing discussin over at NPM too, very mysterious
https://github.com/NginxProxyManager/nginx-proxy-manager/issues/3982