Shimitar

joined 1 month ago
[–] [email protected] 2 points 12 hours ago

I would be in interested as well, for an android specific one even more.

[–] [email protected] 7 points 12 hours ago (1 children)

You can edit your posts, you know :)

[–] [email protected] 6 points 1 day ago

"Santa polenta!"

= saint cornmeal mush

When something annoying or bad happens.

[–] [email protected] 6 points 2 days ago

You don't. Providing you have an upstream gateway that do the firewall for you, provided you don't have an open WiFi, provided you use a reverse proxy, provided you have sane network settings all around, provided you run linux(or similar).

Even better if you are behind CGNAT.

Provided you know what you are doing.

On the other hand, setting up a firewall in a safe way is no easy task either.

I use an opnSense on top of my home network, given all the above "provided".

Before that, I never run a firewall and never had an issue. Always being cg-nat tough.

[–] [email protected] 3 points 3 days ago

Hard to say, unless you give us more on why and where you failed!

[–] [email protected] 9 points 3 days ago* (last edited 3 days ago) (1 children)

I am pretty sure it would be impossible.

That connection I expect to be secured by using signature keys that are private and would need to be released by Tesla to allow anybody connect its car to a different back end.

[–] [email protected] 19 points 4 days ago

Love summit, glad to hear this welcome evolution.

[–] [email protected] 1 points 4 days ago (1 children)

What went wrong with telegram? Which error?

[–] [email protected] 1 points 4 days ago

What server are you hosting? Synapse probably.

I went conduwuit and was quite easy: https://wiki.gardiol.org/doku.php?id=matrix%3Astart

[–] [email protected] 1 points 4 days ago

Yes! Absolutely (* didn't check all existing bridges, so... Maybe not all of them)

[–] [email protected] 2 points 4 days ago

This is my wiki, no Fb bridge, but telegram, WhatsApp, discord and signal bridges yes

https://wiki.gardiol.org/doku.php?id=matrix%3Astart

Check the sidebar, its closed by default on mobile.

 

Following a suggestion i saw last day on a post here i have installed AList (https://alist.nn.ci/) and... guys it rocks!

It is file manager, both browser and WbDAV based. It can be configured with a ton of storages, so you can merge local and remote shares in the same place... You can use LDAP, OIDC and local authentication... WebDAV just works without hassle or fuss...

Moreover it's a chinese project and i got rolling over more than once trying to decypher the pseudo-english documentation.

Very easy to install too..

As usual, here is my wiki page: https://wiki.gardiol.org/doku.php?id=services%3Aalist

1
My fourth time! (downonthestreet.eu)
 

There it is:

I feel so lucky!

Every time a different instance...

 

I host a minecraft bedrock server user by the family to play, from ps4 and android.

Adding a windows client, do i need to pay again to play? I mean, the price of the windows Minecraft client is... Unbeliable. And we already purchased the android client and the ps4 client...

I tried to look around for a cracked windows client but with no luck.

Is it possible? Anybody running a cracked Minecraft client on windows? No need for online play except connect to our self hosted server ...

114
Self-hosting minecraft (downonthestreet.eu)
submitted 2 weeks ago* (last edited 2 weeks ago) by [email protected] to c/[email protected]
 

Hi! I want to selfhost a minecraft server for my kid and hjs friends. I havent played minecraft in quite a few years ...

Where do I start to self host one?

I am already seflhosting lost of stuff from 'Arrs to Jellyfin and Immich and more, so I am not asking on how to do it technically, but where to look for and what to host for a proper Minecraft server!

Edit: choosed to setup this https://github.com/itzg/docker-minecraft-bedrock-server and so far, super smooth and easy peasy!

 

Hi fellow self-hoster.

Almost one year ago i did experiment with Immich and found, at the time, that it was not up to pair to what i was expecting from it. Basically my use case was slightly different from the Immich user experience.

After all this time i decided to give it another go and i am amazed! It has grown a lot, it now has all the features i need and where lacking at the time.

So, in just a few hours i set it up and configured my external libraries, backup, storage template and OIDC authentication with authelia. All works.

Great kudos to the devs which are doing an amazing work.

I have documented all the steps of the process with the link on top of this post, hope it can be useful for someone.

19
submitted 1 month ago* (last edited 1 month ago) by [email protected] to c/[email protected]
 

I have a remote VPS that acts as a wireguard server (keys omitted):

[Interface]
Address = 10.0.0.2/24
[Peer] # self host server
AllowedIPs = 10.0.0.1/32

(The VPS is configured to be a router from the wg0 to it's WAN via nft masquerading)

And i have another server, my self-host server, which connects to the VPS trough wireguard because it uses wireguard tunnel as a port-forwarder with some nft glue on the VPS side to "port forward" my 443 port:

[Interface]
Address = 10.0.0.1/24
[Peer]
AllowedIPs = 10.0.0.2/24

(omitted the nft glue)

My self-hosted server default route goes trough my home ISP and that must remain the case.

Now, on the self-host server i have one specific user that i need to route trough the wireguard tunnel for it's outgoing traffic, because i need to make sure it's traffic seems to originate from the VPS.

The way i usually handle this is with a couple of nft commands to create a user-specific routing table and assign a different default route to it (uid=1070):

 ip rule add uidrange  1070-1070 lookup 1070
ip route add default via 192.168.0.1 dev eno1 table 1070

(this is the case, and works, to use eno1 as default gateway for user 1070. Traceroute 8.8.8.8 will show user 1070 going trough eno1, while any other user going trough the default gateway)

If i try the same using the wg0 interface, it doesn't work.

 ip rule add uidrange  1070-1070 lookup 1070
ip route add default via 10.0.0.2 dev wg0 table 1070

This doesnt work, wireguard refuses to allow packets trough with an error like:

ping 8.8.8.8
From 10.0.0.1 icmp_seq=3 Destination Host Unreachable                                            
ping: sendmsg: Required key not available 

I tried to change my self-host server AllowedIps like this:

[Interface]
Address = 10.0.0.1/24
[Peer]
AllowedIPs = 10.0.0.2/24, 0.0.0.0/0

and it works! User 1070 can route trough wireguard. BUT... now this works just too much... because all my self-host server traffic goes trough the wg0, which is not what i want.

So i tried to disable the WireGuard messing with routing tables:

[Interface]
Address = 10.0.0.1/24
Table = off
[Peer]
AllowedIPs = 10.0.0.2/24, 0.0.0.0/0

and manually added the routes for user 1070 like above (repeat for clarity):

 ip rule add uidrange  1070-1070 lookup 1070
ip route add default via 10.0.0.2 dev wg0 table 1070

The default route now doesnt get replaced, but now, without any error, the packers for user 1070 just don't get routed. ping 8.8.8.8 for user 1070 just hangs

I am at a loss.... Any suggestions?

(edits for clarity and a few small errors)

 

Hi all.

I have been hosting my mail (not "self" like at home, but hosting on a rented server on the 'net) for the last 20 years going the old good way of postfix+dovecot+OpenDKIM/DMARC/SpamAssassin and all the glue and bells.

Having the opportunity to rethink the entire approach (which works fine, but its pretty cumbersome and complex to replicate) i was looking at Stalwart mail server which looks promising and nice, being written in rust following modern principles and such.

Asking to anybody who has been using Stalwart, is it good? Does it deliver being a solid mail server?

Asking to people hosting it's own mail, is there a better solution out there?

Asking to people commenting against hosting a mail server, please refrain from doing so, as i'have been doing that with success for the past 20 years that's what i will be keep doing for the foreseeable future as well.

 

Hi all!

This is my first post from my self-hosted Lemmy instance!

Thanks all you guys who gave me suggestions and help!

Hope you can see it, BTW :)

view more: next ›