sk

joined 1 year ago
[โ€“] [email protected] 3 points 3 days 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.

[โ€“] [email protected] 1 points 6 days 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 :)

[โ€“] [email protected] 0 points 1 week ago (2 children)

@๐˜‹๐˜ช๐˜ณ๐˜ฌ

pre-Docker era

you mean bare metal deployments?

[โ€“] [email protected] 3 points 1 week ago (5 children)

@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.

[โ€“] [email protected] 0 points 2 weeks ago (2 children)

@Cenotaph Nope, say the first doctor did 100 successful cases, the other did 2 successful and 2 failed, then the collective would be (100+2)*100/104 = 98.07%

So the number of cases would matter.

[โ€“] [email protected] 34 points 2 weeks ago (13 children)

vaultwarden syncs your passwords locally so even if your server is down the passwords remain available on your device. And it is a wonderful password manager, you can share passwords with your family, have TOTPs, passkeys.

[โ€“] [email protected] 3 points 3 weeks ago (1 children)

@tofubl tailscale is a mesh network that connects your clients together. and those clients would run a tailscale client on them. There is an additional option of sharing the local network that your device is on with your main tailscale network, thus connecting all your home devices to your private self hosted server network.
This page has more details along with a video that goes in detail: #^https://tailscale.com/kb/1019/subnets

[โ€“] [email protected] 2 points 3 weeks ago (3 children)

This can be achieved with tailscale using subnet routing. your local devices (ebook readers) can access your private servers if they are on a device thats on your tailnet (your phone).

[โ€“] [email protected] 11 points 3 weeks ago (1 children)

@Ephera and cooks them too?

[โ€“] [email protected] 3 points 4 weeks ago (5 children)

@Sunny' ๐ŸŒป that must not happen, did you remove the custom location from before? The above is working with my pihole setup

[โ€“] [email protected] 3 points 4 weeks ago

code formatting is messed up :/

Screenshot_2024-09-29_16-14-30.jpg

[โ€“] [email protected] 6 points 4 weeks ago (7 children)

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

view more: next โ€บ