Eric Bower
·
2026-07-17
How to ban an ip address from creating an account #
You also need to delete the original account because blocking ip only works for the signup flow in our TUI.
Log into production db, then drop into psql
cd pico
make psql
insert into block_signups (ip, reason) values ('0.0.0.0', 'you spam too much');
The IP column is an inet data type to enforce correct structure.