aboutsummaryrefslogtreecommitdiff
path: root/cgi/templates/bansconf
blob: 07e8afdd34c4c25e57d663f591ab5f41f18bd8de (plain) (blame)
1
2
3
4
5
6
7
<?py for board, ips in bans.iteritems(): ?>
location /#{board}/ {
    <?py for ip in ips: ?>
    deny #{ip};
    <?py #endfor ?>
}
<?py #endfor ?>