graysonuniverse

joined 1 month ago

The thought-police strike again.

It's actually pretty interesting.

I recall one incident in lemmy's infancy where one of the devs tried to ban the use of certain words, but then the community (rightfully) pushed back and said "no, that's stupid."

Thank you so much. This explained it clearly and your fix worked.

Where is the 'advanced configuration'?

 

The nginx server block is listening on a port other than 80, if that matters. It's all my VPN provider will allow me to forward.

server {
	listen [PORT];
	server_name mysite.i2p;

	location / {
		proxy_pass http://127.0.0.1:7657/;
		proxy_set_header Host $host;
		proxy_set_header X-Real-IP $remote_addr;
		proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
	}
}