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
OpenEdx
configuration
Commits
c0f89f72
Commit
c0f89f72
authored
Sep 20, 2013
by
Sef Kloninger
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #253 from edx/sef/nginx-long-sites-modes
nginx configuration for long site names
parents
f71c1883
56a6f024
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
17 additions
and
20 deletions
+17
-20
playbooks/edx-west/carnegie-prod-app.yml
+6
-17
playbooks/edx-west/stage-ansible.cfg
+1
-2
playbooks/roles/nginx/tasks/main.yml
+8
-0
playbooks/roles/nginx/tasks/nginx_site.yml
+2
-1
No files found.
playbooks/edx-west/carnegie-prod-app.yml
View file @
c0f89f72
# we never want to migrate from these machines, so note no vars_prompt
# section like other appservers
# set up the fireball transport
#- hosts: ~tag_Name_app(10|20)_cme
# gather_facts: no
# connection: ssh # or paramiko
# sudo: yes
# tasks:
# - apt: pkg=gcc state=present
# - apt: pkg=libzmq-dev,python-zmq state=present
# - action: fireball
# this gets all running prod webservers
#- hosts: tag_environment_prod:&tag_function_webserver
# or we can get subsets of them by name
-
hosts
:
~tag_Name_app(10|20)_carn
-
hosts
:
~tag_Name_app(10|20)_carn
sudo
:
True
sudo
:
True
vars_prompt
:
vars_prompt
:
...
@@ -24,7 +12,8 @@
...
@@ -24,7 +12,8 @@
secure_dir
:
'
../../../edx-secret/ansible'
secure_dir
:
'
../../../edx-secret/ansible'
# this indicates the path to site-specific (with precedence)
# this indicates the path to site-specific (with precedence)
# things like nginx template files
# things like nginx template files
local_dir
:
'
../../../../../../edx-secret/ansible/local'
#local_dir: '../../../edx-secret/ansible/local'
local_dir
:
"
{{secure_dir}}/local"
not_prod
:
true
not_prod
:
true
vars_files
:
vars_files
:
-
"
{{
secure_dir
}}/vars/edxapp_carnegie_vars.yml"
-
"
{{
secure_dir
}}/vars/edxapp_carnegie_vars.yml"
...
@@ -32,7 +21,7 @@
...
@@ -32,7 +21,7 @@
-
"
{{
secure_dir
}}/vars/edxapp_prod_users.yml"
-
"
{{
secure_dir
}}/vars/edxapp_prod_users.yml"
roles
:
roles
:
-
common
-
common
-
nginx
-
{
'
role'
:
'
nginx'
,
'
nginx_conf'
:
true
}
-
{
'
role'
:
'
edxapp'
,
'
openid_workaround'
:
true
}
-
{
'
role'
:
'
edxapp'
,
'
openid_workaround'
:
true
,
'
template_subdir'
:
'
carnegie'
}
# run this role last
# run this role last
# - in_production
# - in_production
playbooks/edx-west/stage-ansible.cfg
View file @
c0f89f72
...
@@ -8,7 +8,7 @@ hash_behaviour=merge
...
@@ -8,7 +8,7 @@ hash_behaviour=merge
# These are environment-specific defaults
# These are environment-specific defaults
forks=10
forks=10
#forks=1
#forks=1
log_path=stage-edx-ansible.log
log_path=
~/
stage-edx-ansible.log
transport=ssh
transport=ssh
hostfile=./ec2.py
hostfile=./ec2.py
extra_vars='key=deployment name=edx-stage group=edx-stage region=us-west-1'
extra_vars='key=deployment name=edx-stage group=edx-stage region=us-west-1'
...
@@ -16,6 +16,5 @@ user=ubuntu
...
@@ -16,6 +16,5 @@ user=ubuntu
[ssh_connection]
[ssh_connection]
# example from https://github.com/ansible/ansible/blob/devel/examples/ansible.cfg
# example from https://github.com/ansible/ansible/blob/devel/examples/ansible.cfg
#ssh_args=-o ControlMaster=auto -o ControlPersist=60s -o ControlPath=/tmp/ansible-ssh-%h-%p-%r
ssh_args=-F stage-ssh-config -o ControlMaster=auto -o ControlPersist=60s -o ControlPath=/tmp/ansible-ssh-%h-%p-%r
ssh_args=-F stage-ssh-config -o ControlMaster=auto -o ControlPersist=60s -o ControlPath=/tmp/ansible-ssh-%h-%p-%r
scp_if_ssh=True
scp_if_ssh=True
playbooks/roles/nginx/tasks/main.yml
View file @
c0f89f72
...
@@ -8,6 +8,14 @@
...
@@ -8,6 +8,14 @@
-
nginx
-
nginx
-
install
-
install
-
name
:
nginx | Server configuration file
copy
:
src={{secure_dir}}/files/nginx.conf dest=/etc/nginx/nginx.conf owner=root group=root mode=0644
when
:
nginx_conf is defined
notify
:
nginx | restart nginx
tags
:
-
nginx
-
install
# Standard configuration that is common across all roles
# Standard configuration that is common across all roles
# Default values for these variables are set in group_vars/all
# Default values for these variables are set in group_vars/all
# Note: remove spaces in {{..}}, otherwise you will get a template parsing error.
# Note: remove spaces in {{..}}, otherwise you will get a template parsing error.
...
...
playbooks/roles/nginx/tasks/nginx_site.yml
View file @
c0f89f72
# Requires nginx package
# Requires nginx package
---
---
-
name
:
nginx | Copying nginx config {{ site_name }}
-
name
:
nginx | Copying nginx config {{ site_name }}
template
:
src={{ item }} dest=/etc/nginx/sites-available/{{ site_name }}
template
:
src={{ item }} dest=/etc/nginx/sites-available/{{ site_name }}
owner=root group=root mode=0600
first_available_file
:
first_available_file
:
-
"
{{
local_dir
}}/nginx/templates/{{
template_subdir
}}/{{
site_name
}}.j2"
-
"
{{
local_dir
}}/nginx/templates/{{
site_name
}}.j2"
-
"
{{
local_dir
}}/nginx/templates/{{
site_name
}}.j2"
# seems like paths in first_available_file must be relative to the playbooks dir
# seems like paths in first_available_file must be relative to the playbooks dir
-
"
roles/nginx/templates/{{
site_name
}}.j2"
-
"
roles/nginx/templates/{{
site_name
}}.j2"
...
...
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