humanoidchaos

joined 3 weeks ago
[–] [email protected] 15 points 1 week ago

"When you do things right, people won’t be sure you’ve done anything at all."

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

Damn. That just made me realize that the most effective military strategy against the US is to pit us against ourselves.

[–] [email protected] 1 points 1 week ago

I'd still like to see Megaman X9.

[–] [email protected] 2 points 1 week ago

Here's hoping the TWoW team has been hosting anonymously and has contingency plans in order.

[–] [email protected] 1 points 1 week ago

Really? It tells me that Turtle WoW became too popular, so Actiblizz needs to remind everyone who is in charge.

I have a feeling that once these scumbags personally hear of someone else playing something for free, then they get very angry.

[–] [email protected] 1 points 1 week ago

It's actually really easy to accomplish this. Developers are purposefully making it difficult to selfhost because they can.

[–] [email protected] 1 points 1 week ago

I loved the PS3 too, but I'm looking at it now in hindsight and recognizing all of its flaws.

I think most of my enjoyment for the PS3 came from "what could be," and then by the time it came I was older and had many other things going on in my life. To be honest, it never really came. The PS3 was not the successor the PS2 deserved.

[–] [email protected] 1 points 1 week ago

Yep. That's exactly when I stopped buying'em.

Microsoft proved to everyone that customers were willing to lower their standards further, so Sony and Nintendo followed suit.

Remember kids, it's not about keeping the lights on. It's about maximizing profit.

[–] [email protected] 1 points 1 week ago

Making rich people richer at the expense of our dignity.

[–] [email protected] 1 points 1 week ago

I would genuinely be more interested if they introduced the game like that.

[–] [email protected] 3 points 1 week ago

The myth of infinite growth has cause infinitely more harm than good.

[–] [email protected] 3 points 1 week ago (2 children)

Silent Hill: Homecoming.

You can emulate it on RPCS3 for free.

83
How to selfhost with a VPN (95.181.238.34:40152)
submitted 2 weeks ago* (last edited 1 week ago) by [email protected] to c/[email protected]
 

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.

 

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 ›