aboutsummaryrefslogtreecommitdiff
path: root/cgi/templates/bans_locations
diff options
context:
space:
mode:
authorLibravatar bai 2020-07-24 05:30:23 -0400
committerLibravatar bai 2020-07-24 05:30:23 -0400
commit7293ea47717c49d66651edef02c5c8def7df9333 (patch)
tree50ddcd111793def89faa23936d1986edb5973777 /cgi/templates/bans_locations
parente67fc0c6ac081b71c819844591d7b1d317071b05 (diff)
downloadweabot-7293ea47717c49d66651edef02c5c8def7df9333.tar.gz
weabot-7293ea47717c49d66651edef02c5c8def7df9333.tar.xz
weabot-7293ea47717c49d66651edef02c5c8def7df9333.zip
Optimizado listado de bans para nginx usando el módulo geo
Diffstat (limited to 'cgi/templates/bans_locations')
-rw-r--r--cgi/templates/bans_locations10
1 files changed, 10 insertions, 0 deletions
diff --git a/cgi/templates/bans_locations b/cgi/templates/bans_locations
new file mode 100644
index 0000000..a514ccf
--- /dev/null
+++ b/cgi/templates/bans_locations
@@ -0,0 +1,10 @@
+<?py for board in set().union(global_boards, board_bans.keys()): ?>
+location /#{board}/ {
+ <?py if board in global_boards: ?>
+ if ($bans_global) { rewrite ^ /cgi/banned; }
+ <?py #endif ?>
+ <?py if board in board_bans: ?>
+ if ($bans_#{board}) { rewrite ^ /cgi/banned; }
+ <?py #endif ?>
+}
+<?py #endfor ?>