humanoidchaos

joined 1 week ago
[–] humanoidchaos@lemmy.cif.su 13 points 7 hours ago (1 children)

Copyright and patent laws need to die.

[–] humanoidchaos@lemmy.cif.su 0 points 7 hours ago (1 children)

I visited and it smelled like shit.

I couldn't get over the fact how everyone around me accepted it as normal.

[–] humanoidchaos@lemmy.cif.su 1 points 7 hours ago (2 children)

What about the meme about it smelling like a sewer?

[–] humanoidchaos@lemmy.cif.su 5 points 7 hours ago

It's literally impossible for any somewhat-popular news outlet to include source material in any of their articles at this point.

[–] humanoidchaos@lemmy.cif.su 7 points 7 hours ago* (last edited 7 hours ago) (1 children)

Sounds like the church got what it deserved.

[–] humanoidchaos@lemmy.cif.su 3 points 7 hours ago

That's what identity politics gets us.

Republicans support trump because they genuinely view democrats the way we view republicans. Both parties are to blame for this, because they focus on gridlock issues that will never change to distract from the class war.

It's a two-pronged strategy, and you should start looking at anyone who is "gung-ho" for a candidate from either party as a useful idiot.

[–] humanoidchaos@lemmy.cif.su 2 points 7 hours ago* (last edited 7 hours ago)

Pedophile Protectors.

It's always acceptable for workers to kill rulers. They kill and rape us every day, including our children, with impunity.

[–] humanoidchaos@lemmy.cif.su 3 points 7 hours ago

The world would be a better place.

[–] humanoidchaos@lemmy.cif.su 2 points 7 hours ago

It's all about seeing how little we're willing to accept, and then conditioning us to accept even less.

[–] humanoidchaos@lemmy.cif.su 5 points 8 hours ago* (last edited 8 hours ago) (1 children)

They always react like this instead of admitting they've been played.

It's insecurity stemming from cognitive dissonance. They've been raised to throw tantrums instead of reflect and improve.

"It's easier to fool someone than to convince them they'd been fooled." - Mark Twain

[–] humanoidchaos@lemmy.cif.su 5 points 8 hours ago (3 children)

I used to think useful idiots were the exception.

[–] humanoidchaos@lemmy.cif.su -4 points 8 hours ago (1 children)

It's fine if you think that's an excuse.

You can read my second statement to see how I view people like you.

85
How to selfhost with a VPN (95.181.238.92:49703)
submitted 4 days ago* (last edited 1 day ago) by humanoidchaos@lemmy.cif.su to c/selfhosted@lemmy.world
 

These are some quick n' dirty instructions so people can get up and running fast.

I wish I had known this was possible sooner.

Instructions:

Check that your VPN supports port forwarding and you have it enabled.

Grab your VPN's internal IP with ip a

Find the interface for your VPN. For me it's called tun0.

Open up /etc/nginx/nginx.conf

You can back it up, or comment everything out, or pick what's necessary. Here's what my file looks like.

	worker_processes  1;
	include modules.d/*.conf;

	events {
		worker_connections  1024;
	}
	http {
		server {
			listen [VPN INTERNAL IP]:[VPN FORWARDED PORT];
			server_name  localhost;
			location / {
				root '[ABSOLUTE PATH TO YOUR WEBSITE ROOT FOLDER]';
				index index.html; # Relative to your website root.
			}
		}
	}

Make sure your permissions are correct. For me, the 'other' group needs read permissions to the root folder, including where it's mounted.

Start nginx with systemctl start nginx

You can visit your website on your host machine in a browser at [VPN INTERNAL IP]:[VPN FORWADED PORT]. For me, using the internal IP is required to view the website on my host machine.

To view the website on other machines, you can use [VPN EXTERNAL IP]:[VPN FORWARDED PORT]. The only thing you need to change is the IP address.

I hope this works for you and you are inspired to selfhost and take back power from those who stole it from us.

 

I'm trying to add my instance to Fediseer at https://gui.fediseer.com/auth/claim-instance so it can federate.

When I try to send the message, I get an error saying: There was an api error: API Key PM failed

I'm not really sure how to diagnose something like this, but I tried sudo docker logs [ID of nginx container] and one of the entries says "POST /inbox HTTP/1.1" 400 86 "-" "Fediseer/0.25.1" after I try sending the message.

I'm assuming this has something to do with it, but I'm not sure if that's true or how to fix it even if it is.

Any help would be greatly appreciated.

view more: next ›