aboutsummaryrefslogtreecommitdiffstats
path: root/server.py
diff options
context:
space:
mode:
Diffstat (limited to 'server.py')
-rw-r--r--server.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/server.py b/server.py
index 649de38..09a0a54 100644
--- a/server.py
+++ b/server.py
@@ -204,7 +204,9 @@ def site_dispatch(env, start_response):
method = env['REQUEST_METHOD']
path = env['PATH_INFO']
- if method == "POST" and client_address not in ('127.0.0.1', '::1'):
+ if (method == "POST"
+ and client_address not in ('127.0.0.1', '::1')
+ and not settings.allow_foreign_post_requests):
yield error_code('403 Forbidden', start_response)
return