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
d3a373d5
Commit
d3a373d5
authored
Oct 11, 2013
by
John Jarvis
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
adding more basic auth vars
parent
06e04092
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
17 additions
and
0 deletions
+17
-0
playbooks/roles/discern/defaults/main.yml
+1
-0
playbooks/roles/nginx/templates/discern.j2
+3
-0
playbooks/roles/nginx/templates/ora.j2
+3
-0
playbooks/roles/nginx/templates/xqueue.j2
+3
-0
playbooks/roles/nginx/templates/xserver.j2
+3
-0
playbooks/roles/ora/defaults/main.yml
+1
-0
playbooks/roles/xqueue/defaults/main.yml
+1
-0
playbooks/roles/xserver/defaults/main.yml
+2
-0
No files found.
playbooks/roles/discern/defaults/main.yml
View file @
d3a373d5
DISCERN_NGINX_PORT
:
18070
DISCERN_BASIC_AUTH
:
False
discern_source_repo
:
https://github.com/edx/discern.git
ease_source_repo
:
https://github.com/edx/ease.git
...
...
playbooks/roles/nginx/templates/discern.j2
View file @
d3a373d5
...
...
@@ -20,6 +20,9 @@ server {
}
location / {
{% if DISCERN_BASIC_AUTH %}
{% include "basic-auth.j2" %}
{% endif %}
proxy_set_header X-Forwarded-Proto $http_x_forwarded_proto;
proxy_set_header X-Forwarded-Port $http_x_forwarded_port;
proxy_set_header X-Forwarded-For $http_x_forwarded_for;
...
...
playbooks/roles/nginx/templates/ora.j2
View file @
d3a373d5
...
...
@@ -8,6 +8,9 @@ server {
location / {
{% if ORA_BASIC_AUTH %}
{% include "basic-auth.j2" %}
{% endif %}
try_files $uri @proxy_to_app;
}
...
...
playbooks/roles/nginx/templates/xqueue.j2
View file @
d3a373d5
...
...
@@ -7,6 +7,9 @@ server {
listen {{ XQUEUE_NGINX_PORT }} default_server;
location / {
{% if XQUEUE_BASIC_AUTH %}
{% include "basic-auth.j2" %}
{% endif %}
try_files $uri @proxy_to_app;
}
...
...
playbooks/roles/nginx/templates/xserver.j2
View file @
d3a373d5
...
...
@@ -17,6 +17,9 @@ server {
listen {{ XSERVER_NGINX_PORT }} default_server;
location / {
{% if XSERVER_BASIC_AUTH %}
{% include "basic-auth.j2" %}
{% endif %}
try_files $uri @proxy_to_app;
}
...
...
playbooks/roles/ora/defaults/main.yml
View file @
d3a373d5
# vars for the ORA role
---
ORA_NGINX_PORT
:
18060
ORA_BASIC_AUTH
:
False
ora_code_dir
:
"
{{
app_base_dir
}}/edx-ora"
# Default nginx listen port
...
...
playbooks/roles/xqueue/defaults/main.yml
View file @
d3a373d5
...
...
@@ -2,6 +2,7 @@
# when the role is included
---
XQUEUE_NGINX_PORT
:
18040
XQUEUE_BASIC_AUTH
:
False
xqueue_code_dir
:
"
{{
app_base_dir
}}/xqueue"
...
...
playbooks/roles/xserver/defaults/main.yml
View file @
d3a373d5
...
...
@@ -2,6 +2,8 @@
---
XSERVER_NGINX_PORT
:
18050
XSERVER_BASIC_AUTH
:
False
RABBIT_RUN_URL
:
'
'
RABBIT_GRADER_ROOT
:
'
'
RABBIT_LOGGING_ENV
:
'
sandbox'
...
...
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