humanoidchaos

joined 5 days ago
[–] humanoidchaos@lemmy.cif.su 7 points 4 hours ago (1 children)

How the fuck do they get a month off?

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

It's really easy (cheap) to manipulate people in rural America.

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

I hope this guy's family suffers for all the suffering he's putting other families through.

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

The older I get, the more I realize the "wisdom of the crowd" is dictated by useful idiots who don't want to admit or acknowledge that they've been conned.

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

Cows need to be pregnant to produce milk, so they're artificially inseminated throughout most of their lives.

Also, most people can't properly digest lactose. Only about 30% of the population has the enzyme required, and most of them are concentrated in Europe/North America.

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

Stay classy, h-town.

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

Yes. I have no respect for the people working for these organizations.

They're part of the problem, and they're only doing it for a paycheck.

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

I'm just tired of corporations and useful idiots getting to dictate what I get to see.

News outlets never show source material. It's always some dipshit telling me what to think.

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

Hopefully we can see more efforts at generalizing phone OSs so they work on most devices, similar to how we have laptops.

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

The people coming up with these ideas should be lynched.

83
How to selfhost with a VPN (95.181.238.114:49703)
submitted 1 day ago* (last edited 12 hours 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 ›