We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1807300 commit abea4abCopy full SHA for abea4ab
playbooks/roles/nginx/templates/edx/app/nginx/sites-available/lms.j2
@@ -57,7 +57,17 @@ server {
57
{% include "basic-auth.j2" %}
58
try_files $uri @proxy_to_lms_app;
59
}
60
-
+
61
+ location /register {
62
63
+ satisfy any;
64
+ allow 127.0.0.1;
65
+ allow 10.0.0.0/8;
66
+ allow 192.168.0.0/16;
67
+ allow 172.16.0.0/12;
68
+ deny all;
69
+ }
70
71
# No basic auth security on the github_service_hook url, so that github can use it for cms
72
location /github_service_hook {
73
0 commit comments