0x0f

joined 1 year ago
MODERATOR OF
[–] 0x0f@lemmy.blahaj.zone 1 points 1 year ago

theres a few who do, the activity is centered around irc and the forums.

[–] 0x0f@lemmy.blahaj.zone 1 points 1 year ago

yeah, lightning nodes are hot. you can reduce the risk by moving the signer off-device, or using only psbts to open channels, but i think thats about it.

[–] 0x0f@lemmy.blahaj.zone 8 points 1 year ago (6 children)

i wonder if we'll see a move to tor...

[–] 0x0f@lemmy.blahaj.zone 4 points 1 year ago (1 children)

high at midnight when the air is cool ƪ(˘⌣˘)ʃ

[–] 0x0f@lemmy.blahaj.zone 2 points 1 year ago

yeah, i agree with the OP. decentralized networks have a hump thats hard to smooth out, and activitypub isnt the best protocol in the furst place.

[–] 0x0f@lemmy.blahaj.zone 22 points 1 year ago

profile page gives me chills, we shall carry Apollos legacy ᕦ(ò_óˇ)ᕤ

[–] 0x0f@lemmy.blahaj.zone 0 points 1 year ago (1 children)

wait, the battery is behind the screen?

[–] 0x0f@lemmy.blahaj.zone 1 points 1 year ago

looks like some boof, why would apple jacks wanna be associated with weed?

[–] 0x0f@lemmy.blahaj.zone 4 points 1 year ago

been lurkin around the fediverse for years, but only recently found lemmy. nice change of pace, never liked the microblogging format so masto never kept me.

[–] 0x0f@lemmy.blahaj.zone 1 points 1 year ago* (last edited 1 year ago)

1: not very hard actually, the hardest part is gettin the cert onto your other devices x3
all you need to do is add each subdomain to the cert, add ssl_certificate and ssl_certificate_key to the http block, then enable ssl for each subdomain, like so:

http {
    # cert
    ssl_certificate /etc/nginx/public.crt;
    ssl_certificate_key /etc/nginx/private.key;
    server {
        listen       12345:443 ssl;
        server_name  pi.hole;

        location / {
                proxy_pass http://localhost:80;
        }
    }
    server {
        listen       12345:443 ssl;
        server_name  fox.hole;

        location / {
                proxy_pass http://localhost:621;
        }
    }
}

2: correct, all traffic goes through nginx.

view more: ‹ prev next ›