immibis

joined 2 years ago
[–] immibis@social.immibis.com 1 points 2 years ago

@Izzgo @Skyline @eterps It's like houses locking themselves so the door won't open unless you arrived by Ford(R).

[–] immibis@social.immibis.com 2 points 2 years ago

Piracy is best compared to riding a bus without a ticket.

[–] immibis@social.immibis.com 12 points 2 years ago

@RagingNerdoholic @BraBraBra because what they are looking at to determine profitability isn't actual profitability. They have certain metrics and they are making those metrics as high as possible. One might be, for example, ads served per page view.

[–] immibis@social.immibis.com -1 points 2 years ago

"This whole anti-Microsoft thing is so pathetic. Just use Windows."

[–] immibis@social.immibis.com 56 points 2 years ago

go on, show us the threatening email

[–] immibis@social.immibis.com 0 points 2 years ago (1 children)

@FarLine99 I think there are also chat systems that use the real Tor network.

[–] immibis@social.immibis.com 1 points 2 years ago (3 children)

There's Session, which uses some kind of shitty blockchain version of not-quite-Tor. Every user acts like a not-quite-onion-service and your username is a not-quite-onion-address.

[–] immibis@social.immibis.com -5 points 2 years ago

@blazera @psychothumbs if they don't they'll be replaced by someone else who will

[–] immibis@social.immibis.com 7 points 2 years ago* (last edited 2 years ago) (1 children)

@anthoniix @Recant @hedge I've come to the conclusion that there are no particular rules that can prevent fascism. All that can be done is to continuously fight in whatever way is possible that day.

The fascists firmly control the courts? Pack the courts. The progressives firmly control the courts? Amend the constitution to prevent court-packing. The fascists took them over again? Repeal the amendment. The rules and traditions mean nothing to fascists and they have to mean nothing to progressives as well if progressives are to win. Fascists will always change the rules to help fascists win; progressives have to do the same.

[–] immibis@social.immibis.com 11 points 2 years ago* (last edited 2 years ago) (1 children)

do you understand what port forwarding is for?

edit: basically, one of two ends of a connection has to have port forwarding, or else the connection can't happen at all.

[–] immibis@social.immibis.com 2 points 2 years ago (1 children)

Here's what I have for Pleroma.

server {
server_name social.immibis.com; # this is what matches the domain name
root /var/www/social_html; # empty folder
location / {
proxy_pass http://localhost:4000;
}

# this block was from the pleroma documentation, I think. Mastodon and Lemmy might have their own recommendations. Upgrade is to enable proxying websockets. and the rest seems generally sensible for proxying.
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection "upgrade";
proxy_set_header Host $http_host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
client_max_body_size 16m;
ignore_invalid_headers off;

# when you run Certbot it will change this to 443, insert SSL configuration, and set up a redirect on port 80
listen [::]:80;
listen 80;
}

view more: ‹ prev next ›