Commit 689fe8df by John Jarvis

moving all nginx templates into the nginx role

removing nginx setup from individual roles
parent 3b1faf4f
...@@ -6,7 +6,7 @@ discern_settings: discern.aws ...@@ -6,7 +6,7 @@ discern_settings: discern.aws
nltk_data_dir: /usr/share/nltk_data nltk_data_dir: /usr/share/nltk_data
ease_branch: master ease_branch: master
discern_branch: dev discern_branch: dev
nginx_listen_port: 80 discern_nginx_port: 80
gunicorn_port: 7999 gunicorn_port: 7999
discern_user: discern discern_user: discern
site_name: discern site_name: discern
...@@ -4,6 +4,3 @@ ...@@ -4,6 +4,3 @@
- name: discern | restart celery - name: discern | restart celery
service: name=celery state=restarted service: name=celery state=restarted
- name: discern | restart nginx
service: name=nginx state=restarted
...@@ -109,20 +109,3 @@ ...@@ -109,20 +109,3 @@
#Have this separate from the other three because it doesn't take the noinput flag #Have this separate from the other three because it doesn't take the noinput flag
- name: discern | django update_index for discern - name: discern | django update_index for discern
shell: ${venv_dir}/bin/python {{discern_dir}}/manage.py update_index --settings={{discern_settings}} --pythonpath={{discern_dir}} shell: ${venv_dir}/bin/python {{discern_dir}}/manage.py update_index --settings={{discern_settings}} --pythonpath={{discern_dir}}
- name: discern | create nginx directory and set perms
file: path=/etc/nginx/sites-available owner=root group=edx mode=2775 state=directory
#Install nginx sites available
#remove default link, render template, link template to sites-enabled to activate
- name: discern | Removing default nginx config
file: path=/etc/nginx/sites-enabled/default state=absent
notify: discern | restart nginx
- name: discern | render nginx sites available
template: src=nginx-discern.j2 dest=/etc/nginx/sites-available/{{ site_name }}
notify: discern | restart nginx
- name: discern | Creating nginx config link {{ site_name }}
file: src=/etc/nginx/sites-available/{{ site_name }} dest=/etc/nginx/sites-enabled/{{ site_name }} state=link owner=root group=root
notify: discern | restart nginx
...@@ -249,8 +249,7 @@ edxapp_lms_preview_app_address: 127.0.0.1 ...@@ -249,8 +249,7 @@ edxapp_lms_preview_app_address: 127.0.0.1
# These vars are for creating the application json config # These vars are for creating the application json config
# files. There are two for each service that uses the # files. There are two for each service that uses the
# 'edx-platform' code. Defining them will create the upstart # 'edx-platform' code. Defining them will create the upstart
# job and nginx configuration for the corresponding service. # job. It will also enable the corresponding section in the
# It will also enable the corresponding section in the
# 'edxapp' upstart job. # 'edxapp' upstart job.
service_variants_enabled: service_variants_enabled:
......
# requires: # requires:
# - group_vars/all # - group_vars/all
# - common/tasks/main.yml # - common/tasks/main.yml
# - nginx/tasks/main.yml
--- ---
- name: create cms application config - name: create cms application config
template: src=cms.env.json.j2 dest=$app_base_dir/cms.env.json mode=640 owner=www-data group=adm template: src=cms.env.json.j2 dest=$app_base_dir/cms.env.json mode=640 owner=www-data group=adm
...@@ -19,12 +18,6 @@ ...@@ -19,12 +18,6 @@
- update - update
- deploy - deploy
- include: ../../nginx/tasks/nginx_site.yml state=link site_name=cms
when: celery_worker is not defined
- include: ../../nginx/tasks/nginx_site.yml state=link site_name=cms-backend
when: celery_worker is not defined
- name: Create CMS log target directory - name: Create CMS log target directory
file: path={{log_base_dir}}/cms state=directory owner=syslog group=syslog mode=2750 file: path={{log_base_dir}}/cms state=directory owner=syslog group=syslog mode=2750
tags: tags:
......
# requires: # requires:
# - group_vars/all # - group_vars/all
# - common/tasks/main.yml # - common/tasks/main.yml
# - nginx/tasks/main.yml
--- ---
- name: create lms application config - name: create lms application config
template: src=lms-preview.env.json.j2 dest=$app_base_dir/lms-preview.env.json mode=640 owner=www-data group=adm template: src=lms-preview.env.json.j2 dest=$app_base_dir/lms-preview.env.json mode=640 owner=www-data group=adm
...@@ -26,11 +25,5 @@ ...@@ -26,11 +25,5 @@
- update - update
- deploy - deploy
- include: ../../nginx/tasks/nginx_site.yml state=link site_name=lms-preview
when: celery_worker is not defined
- include: ../../nginx/tasks/nginx_site.yml state=link site_name=lms-preview-backend
when: celery_worker is not defined
# Creates LMS Preview upstart file # Creates LMS Preview upstart file
- include: upstart.yml basename=lms-preview - include: upstart.yml basename=lms-preview
...@@ -24,12 +24,6 @@ ...@@ -24,12 +24,6 @@
- update - update
- deploy - deploy
- include: ../../nginx/tasks/nginx_site.yml state=link site_name=lms
when: celery_worker is not defined
- include: ../../nginx/tasks/nginx_site.yml state=link site_name=lms-backend
when: celery_worker is not defined
# Creates LMS upstart file # Creates LMS upstart file
- include: upstart.yml basename=lms - include: upstart.yml basename=lms
when: celery_worker is not defined when: celery_worker is not defined
......
# requires: # requires:
# - group_vars/all # - group_vars/all
# - common/tasks/main.yml # - common/tasks/main.yml
# - nginx/tasks/main.yml
--- ---
- name: Change permissions on datadir - name: Change permissions on datadir
file: path={{ app_base_dir }}/data state=directory owner=www-data group=www-data file: path={{ app_base_dir }}/data state=directory owner=www-data group=www-data
......
...@@ -2,7 +2,6 @@ ...@@ -2,7 +2,6 @@
# requires: # requires:
# - group_vars/all # - group_vars/all
# - common/tasks/main.yml # - common/tasks/main.yml
# - nginx/tasks/main.yml
# #
# This installs mysql-server-5.5 though # This installs mysql-server-5.5 though
# in production we use mysql-5.1.62. # in production we use mysql-5.1.62.
......
--- ---
- name: nginx | restart nginx - name: nginx | restart nginx
service: name=nginx state=restarted service: name=nginx state=restarted
sudo: True
- name: nginx | reload nginx
service: name=nginx state=reloaded
...@@ -11,16 +11,13 @@ ...@@ -11,16 +11,13 @@
- name: nginx | Server configuration file - name: nginx | Server configuration file
copy: src={{secure_dir}}/files/nginx.conf dest=/etc/nginx/nginx.conf owner=root group=root mode=0644 copy: src={{secure_dir}}/files/nginx.conf dest=/etc/nginx/nginx.conf owner=root group=root mode=0644
when: nginx_conf is defined when: nginx_conf is defined
notify: nginx | restart nginx notify: nginx | reload nginx
tags: tags:
- nginx - nginx
- install - install
# Standard configuration that is common across all roles # Default configuration that is common across all roles
# Default values for these variables are set in group_vars/all - include: nginx_site.yml state=link site_name=edx-release
# Note: remove spaces in {{..}}, otherwise you will get a template parsing error.
- include: nginx_site.yml state={{nginx_cfg.sites_enabled.edx_release}} site_name=edx-release
- include: nginx_site.yml state={{nginx_cfg.sites_enabled.basic_auth}} site_name=basic-auth
- name: nginx | Write out default htpasswd file - name: nginx | Write out default htpasswd file
copy: content={{ nginx_cfg.htpasswd }} dest=/etc/nginx/nginx.htpasswd owner=www-data group=www-data mode=0600 copy: content={{ nginx_cfg.htpasswd }} dest=/etc/nginx/nginx.htpasswd owner=www-data group=www-data mode=0600
...@@ -38,7 +35,7 @@ ...@@ -38,7 +35,7 @@
# removing default link # removing default link
- name: nginx | Removing default nginx config and restart (enabled) - name: nginx | Removing default nginx config and restart (enabled)
file: path=/etc/nginx/sites-enabled/default state=absent file: path=/etc/nginx/sites-enabled/default state=absent
notify: nginx | restart nginx notify: nginx | reload nginx
tags: tags:
- nginx - nginx
- update - update
...@@ -47,25 +44,21 @@ ...@@ -47,25 +44,21 @@
- name: nginx | Set up nginx access log rotation - name: nginx | Set up nginx access log rotation
template: dest=/etc/logrotate.d/nginx-access src=edx_logrotate_nginx_access.j2 owner=root group=root mode=644 template: dest=/etc/logrotate.d/nginx-access src=edx_logrotate_nginx_access.j2 owner=root group=root mode=644
notify: common | restart logrotate
tags: tags:
- logging - logging
- update - update
- name: nginx | Set up nginx access log rotation - name: nginx | Set up nginx access log rotation
template: dest=/etc/logrotate.d/nginx-error src=edx_logrotate_nginx_error.j2 owner=root group=root mode=644 template: dest=/etc/logrotate.d/nginx-error src=edx_logrotate_nginx_error.j2 owner=root group=root mode=644
notify: common | restart logrotate
tags: tags:
- logging - logging
- update - update
- name: nginx | Removing default nginx config (available) - name: nginx | Removing default nginx config (available)
file: path=/etc/nginx/sites-available/default state=absent file: path=/etc/nginx/sites-available/default state=absent
tags: notify: nginx | reload nginx
- nginx
- update
- name: nginx | Register the fact that nginx has run
command: echo True
register: nginx_role_run
tags: tags:
- nginx - nginx
- update - update
......
server {
listen 80;
location / {
auth_basic "Restricted"; auth_basic "Restricted";
auth_basic_user_file /etc/nginx/nginx.htpasswd; auth_basic_user_file /etc/nginx/nginx.htpasswd;
root {{app_base_dir}}/main_static; root {{ app_base_dir }}/main_static;
index index.html index index.html
proxy_set_header X-Forwarded-Proto https; proxy_set_header X-Forwarded-Proto https;
}
}
...@@ -31,6 +31,9 @@ server { ...@@ -31,6 +31,9 @@ server {
} }
location / { location / {
{% if EDXAPP_LMS_BASIC_AUTH %}
{% include "basic-auth.j2" %}
{% endif %}
try_files $uri @proxy_to_cms_app; try_files $uri @proxy_to_cms_app;
} }
......
server { server {
listen {{nginx_listen_port}}; listen {{discern_nginx_port}};
server_name localhost; server_name localhost;
set $my_host $http_host; set $my_host $http_host;
......
server { server {
listen 8099 default_server; listen 8099 default_server;
server_name mitx_release.*;
location = /versions.html { location = /versions.html {
alias {{ nginx_cfg.version_html }}; alias {{ nginx_cfg.version_html }};
} }
......
...@@ -28,8 +28,19 @@ server { ...@@ -28,8 +28,19 @@ server {
proxy_redirect off; proxy_redirect off;
proxy_pass http://lms-backend; proxy_pass http://lms-backend;
} }
location / {
auth_basic "Restricted";
auth_basic_user_file /etc/nginx/nginx.htpasswd;
root {{app_base_dir}}/main_static;
index index.html
proxy_set_header X-Forwarded-Proto https;
}
location / { location / {
{% if EDXAPP_LMS_BASIC_AUTH %}
{% include "basic-auth.j2" %}
{% endif %}
try_files $uri @proxy_to_lms_app; try_files $uri @proxy_to_lms_app;
} }
......
...@@ -53,10 +53,6 @@ ...@@ -53,10 +53,6 @@
- ora - ora
- deploy - deploy
# Install nginx site
- include: ../../nginx/tasks/nginx_site.yml state=link site_name=ora
# Do A Checkout # Do A Checkout
- name: ora | git checkout ora repo into $app_base_dir - name: ora | git checkout ora repo into $app_base_dir
git: dest={{ora_code_dir}} repo={{ora_source_repo}} version={{ora_version}} git: dest={{ora_code_dir}} repo={{ora_source_repo}} version={{ora_version}}
......
# requires: # requires:
# - group_vars/all # - group_vars/all
# - common/tasks/main.yml # - common/tasks/main.yml
# - nginx/tasks/main.yml
--- ---
- name: ora | create the ora application user - name: ora | create the ora application user
user: name={{ ora_user }} user: name={{ ora_user }}
......
...@@ -35,9 +35,6 @@ ...@@ -35,9 +35,6 @@
- xqueue - xqueue
- deploy - deploy
# Install nginx site
- include: ../../nginx/tasks/nginx_site.yml state=link site_name=xqueue
# Do A Checkout # Do A Checkout
- name: xqueue | git checkout xqueue repo into {{app_base_dir}} - name: xqueue | git checkout xqueue repo into {{app_base_dir}}
git: dest={{xqueue_code_dir}} repo={{xqueue_source_repo}} version={{xqueue_version}} git: dest={{xqueue_code_dir}} repo={{xqueue_source_repo}} version={{xqueue_version}}
......
# requires: # requires:
# - group_vars/all # - group_vars/all
# - common/tasks/main.yml # - common/tasks/main.yml
# - nginx/tasks/main.yml
--- ---
# Check out xqueue repo to {{xqueue_code_dir}} # Check out xqueue repo to {{xqueue_code_dir}}
- name: xqueue | install git and its recommends - name: xqueue | install git and its recommends
......
- name: xserver | restart nginx
service: name=nginx state=restarted
...@@ -53,6 +53,4 @@ ...@@ -53,6 +53,4 @@
- name: xserver | upload ssh script - name: xserver | upload ssh script
copy: src=git_ssh.sh dest=/tmp/git_ssh.sh force=yes owner=root group=adm mode=750 copy: src=git_ssh.sh dest=/tmp/git_ssh.sh force=yes owner=root group=adm mode=750
- include: nginx.yml
- include: deploy.yml - include: deploy.yml
- name: xserver | add xserver nginx configuration
template: src=simple-proxy.j2 dest=/etc/nginx/sites-available/simple-proxy
notify:
- xserver | restart nginx
- name: xserver | enable xserver nginx configuration
file: src=/etc/nginx/sites-available/simple-proxy dest=/etc/nginx/sites-enabled/simple-proxy state=link
notify:
- xserver | restart nginx
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment