adam

joined 1 year ago
[–] [email protected] 5 points 10 months ago

I would take the toaster one just so I could mess with my friends

[–] [email protected] 7 points 10 months ago

These stats are desktop only

[–] [email protected] 2 points 11 months ago

I switched to fedora some months ago and I've been really enjoying it. Maybe worth a shot.

[–] [email protected] 19 points 11 months ago

I didn't even know that was a thing, I just keep it in a git repo

[–] [email protected] 4 points 11 months ago (2 children)

When did he ever talk about those things? Did I miss something?

[–] [email protected] 11 points 11 months ago* (last edited 10 months ago)

No matter what I'm doing on my computer, I'll always hide it when someone enters my room

[–] [email protected] 12 points 11 months ago

Pop os is great for gaming and it comes with nvidia drivers installed

[–] [email protected] 2 points 1 year ago* (last edited 1 year ago)

I now have two gpus, but I've run single gpu passthrough for a long time without any issues. However, you have to keep in mind that some software (such as anticheat for games) will refuse to run in a virtual machine.

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

There is a shell option for this (at least in zsh): setopt autocd. This allows you to change directories while omitting the cd in front

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

IMHO arch is way too overrated. It does include a lot of stuff in the repos that others don't have, but the benefit end there in my opinion. My experience on fedora has been way better.

 

Hi all,

As the title suggests, I'm trying to run an ejabberd (xmpp) server behind an nginx reverse proxy. The reason is, I want to be able to run the server on my raspberry pi at home, but have people connect to it through my VPS, which is running nginx. This would be nice because I don't need a static ip and I don't have to leak my ip address.

I have looked this up, but have not found an answer that works exactly for my use case.

My current nginx configuration looks like this:

stream {
	upstream xmppserver {
		server 10.8.0.3:5223;
	}

	upstream turnserver {
		server 10.8.0.3:3478;
	}

	map $ssl_preread_alpn_protocols $upstream {
		"xmpp-client" xmppserver;
		"stun.turn" turnserver;
		"stun.nat-discovery" turnserver;
	}

	server {
		listen 6969;
		proxy_pass $upstream;
		proxy_protocol on;
	}
}

And I have a DNS entry telling XMPP clients to contact my server at port 6969 (this was just for testing):

I would also need to figure out how to supply ejabberd with the correct certificates for the domain. Since it's running on a different computer than the reverse proxy, would I have to somehow copy the certificate over every time it has to be renewed?

Thank you for your help.

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

There is some obscure/proprietary hardware that doesn't play nicely with linux. Fingerprint readers may not work on laptops, for example. I've had trouble with a trackpad in the past.

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

Gentoo. I say this as someone who used to daily drive it.

And arch too.

view more: next ›