Email or username:

Password:

Forgot your password?
Top-level
Eugen Rochko

@stux No, in nginx you'd use not 0.0.0.0 but the IP of the "external" server where you put the streaming. The 0.0.0.0 would be in BIND=0.0.0.0 in the systemd service file for your streaming on the external server.

Environment variables go into .env.production

docs.joinmastodon.org/admin/co

No comments
stux⚡

@Gargron Okay got it thanks!

Can I also create a second upstream for the "local" sidekiq processes(nginx side)

stux⚡

@Gargron Little extra question, for puma:

upstream backend {
server 127.0.0.1:3000
server externalip:3000
fail_timeout=0;
}

This would also work?
with TRUSTED_PROXY_IP=externalip in the .env.p?

stux⚡

@Gargron Little extra question, for puma:

upstream backend {
server 127.0.0.1:3000 fail_timeout=0;
server externalip:3000 fail_timeout=0;

}

This would also work?
with TRUSTED_PROXY_IP=externalip in the .env.p?

Go Up