]> git.openstreetmap.org Git - chef.git/commitdiff
osqa: block login access and conditional posts
authorGrant Slater <github@firefishy.com>
Thu, 7 Mar 2024 11:45:54 +0000 (11:45 +0000)
committerGrant Slater <github@firefishy.com>
Thu, 7 Mar 2024 11:45:54 +0000 (11:45 +0000)
cookbooks/osqa/templates/default/apache.erb

index 9aa0eb9cb50463c3c8d6771e1183c1b305e0d01c..a62b4813c1d54a8c5fd2470cd2e4b8bfe9ee5ee4 100644 (file)
@@ -53,6 +53,19 @@ WSGIDaemonProcess <%= @name %> user=<%= @user %> group=<%= @group %> processes=4
   WSGIScriptAlias / <%= @directory %>/osqa/osqa.wsgi
 
   WSGIProcessGroup <%= @name %>
+
+  # Site is now closed. Block access to login page and other pages.
+  <Location /account>
+    Require all denied
+    ErrorDocument 403 "help.openstreetmap.org is closed. Use community.openstreetmap.org instead."
+  </Location>
+  <Location /questions/ask/>
+    Require all denied
+    ErrorDocument 403 "help.openstreetmap.org is closed. Use community.openstreetmap.org instead."
+  </Location>
+  RewriteEngine on
+  RewriteCond %{REQUEST_METHOD} POST
+  RewriteRule ^/questions - [F,NC]
 </VirtualHost>
 
 <Directory <%= @directory %>/osqa>