Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
C
configuration
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
configuration
Commits
c088060b
Commit
c088060b
authored
Oct 07, 2016
by
Bilal Ahmad
Committed by
GitHub
Oct 07, 2016
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #3395 from edx/bilalahmad99/rate_limit
[OPS-1711]: user agents to be rate limited
parents
02b480bc
eb76ae78
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
0 deletions
+14
-0
playbooks/roles/edxapp/defaults/main.yml
+2
-0
playbooks/roles/nginx/templates/edx/app/nginx/sites-available/lms.j2
+12
-0
No files found.
playbooks/roles/edxapp/defaults/main.yml
View file @
c088060b
...
...
@@ -271,6 +271,8 @@ EDXAPP_CMS_SSL_NGINX_PORT: 48010
EDXAPP_ENABLE_RATE_LIMITING
:
false
EDXAPP_COURSES_REQUEST_RATE
:
'
5r/s'
EDXAPP_COURSES_REQUEST_BURST_RATE
:
10
EDXAPP_COURSES_USER_AGENT_BURST_RATE
:
5
EDXAPP_RATE_LIMITED_USER_AGENTS
:
[]
EDXAPP_LANG
:
'
en_US.UTF-8'
EDXAPP_LANGUAGE_CODE
:
'
en'
...
...
playbooks/roles/nginx/templates/edx/app/nginx/sites-available/lms.j2
View file @
c088060b
...
...
@@ -14,6 +14,17 @@ upstream lms-backend {
{%- if EDXAPP_ENABLE_RATE_LIMITING -%}
# Make Zone
limit_req_zone $cookie_{{ EDXAPP_SESSION_COOKIE_NAME }} zone=cookies:10m rate={{ EDXAPP_COURSES_REQUEST_RATE }};
{% for agent in EDXAPP_RATE_LIMITED_USER_AGENTS %}
# Map of http user agent with name limit_bot_agent_alias having binary IP of the agent
map $http_user_agent {{ "$limit_bot_" ~ agent.alias }} {
{{ agent.agent_name }} $binary_remote_addr;
}
limit_req_zone {{ "$limit_bot_" ~ agent.alias }} zone=agents:10m rate={{ agent.rate }};
{% endfor %}
{%- endif %}
...
...
@@ -205,6 +216,7 @@ error_page {{ k }} {{ v }};
{%- if EDXAPP_ENABLE_RATE_LIMITING -%}
# Set Limit
limit_req zone=cookies burst={{ EDXAPP_COURSES_REQUEST_BURST_RATE }};
limit_req zone=agents burst={{ EDXAPP_COURSES_USER_AGENT_BURST_RATE }};
error_page 503 = /server/rate-limit.html;
{%- endif -%}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment