ian
April 15, 2026, 8:06am
2
You could either create the accounts manually or replace the endpoint for /new to a long, random path, change it regularly and never share it outside your friends:
load_module modules/ngx_stream_module.so;
user www-data;
worker_processes auto;
# Increase the number of connections
# that a worker process can open
# to avoid errors such as
# accept4() failed (24: Too many open files)
# and
# socket() failed (24: Too many open files) while connecting to upstream
# in the logs.
# <https://nginx.org/en/docs/ngx_core_module.html#worker_rlimit_nofile>
worker_rlimit_nofile 2048;
pid /run/nginx.pid;
error_log syslog:server=unix:/dev/log,facility=local3;
events {
# Increase to avoid errors such as
# 768 worker_connections are not enough while connecting to upstream
This file has been truncated. show original
Related:
I’m working on a DCLOGIN scheme:
(qr code containing credentials directly, single use for one account unlike the burner accounts which are token based, so exactly what need here)