Commit 3b1faf4f by John Jarvis

combining backend templates

parent 0ad6ab5c
......@@ -2,13 +2,7 @@
---
- name: nginx | Copying nginx config {{ site_name }}
template: src={{ item }} dest=/etc/nginx/sites-available/{{ site_name }} owner=root group=root mode=0600
first_available_file:
- "{{ local_dir }}/nginx/templates/{{ template_subdir }}/{{ site_name }}.j2"
- "{{ local_dir }}/nginx/templates/{{ site_name }}.j2"
# seems like paths in first_available_file must be relative to the playbooks dir
- "roles/nginx/templates/{{ site_name }}.j2"
notify: nginx | restart nginx
when: nginx_role_run is defined
tags:
- nginx
- lms
......
upstream cms-backend {
# For a TCP configuration:
server 127.0.0.1:8010 fail_timeout=0;
}
upstream cms-backend {
# For a TCP configuration:
server 127.0.0.1:{{ edxapp_cms_app_port }} fail_timeout=0;
}
server {
# CMS configuration file for nginx, templated by ansible
......
upstream lms-backend {
# For a TCP configuration:
server 127.0.0.1:8000 fail_timeout=0;
}
upstream lms-preview-backend {
# For a TCP configuration:
server 127.0.0.1:8020 fail_timeout=0;
}
upstream lms-preview-backend {
# For a TCP configuration:
server 127.0.0.1:{{ edxapp_lms_preview_app_port }} fail_timeout=0;
}
server {
# LMS-preview configuration file for nginx, templated by ansible
......
upstream lms-backend {
# For a TCP configuration:
server 127.0.0.1:{{ edxapp_lms_app_port }} fail_timeout=0;
}
server {
# LMS configuration file for nginx, templated by ansible
......
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