1
0
Fork 0
mirror of https://github.com/iiab/iiab.git synced 2025-03-09 15:40:17 +00:00

remove var to disable kalite proxy -- shadowing not a problem with substitute/rewrite approah

This commit is contained in:
George Hunt 2017-07-06 17:54:42 -07:00 committed by georgejhunt
parent 4aafe49443
commit d6f8364bee
2 changed files with 0 additions and 10 deletions

View file

@ -14,7 +14,6 @@ kalite_server_name: kalite
kalite_server_port: 8008 kalite_server_port: 8008
kalite_enabled: False kalite_enabled: False
# if proxy conflicts with another higher priority service we want to proxy # if proxy conflicts with another higher priority service we want to proxy
proxy_kalite_serve: True
kalite_cron_enabled: False kalite_cron_enabled: False
khan_assessment_install: True khan_assessment_install: True
khan_assessment_url: "http://pantry.learningequality.org/downloads/ka-lite/0.16/content/khan_assessment.zip" khan_assessment_url: "http://pantry.learningequality.org/downloads/ka-lite/0.16/content/khan_assessment.zip"

View file

@ -64,12 +64,3 @@
- { src: 'kalite.sh.j2', dest: '/etc/profile.d/kalite.sh', mode: '0644'} - { src: 'kalite.sh.j2', dest: '/etc/profile.d/kalite.sh', mode: '0644'}
- { src: 'kalite.config', dest: '/etc/{{ apache_config_dir}}', mode: '0644'} - { src: 'kalite.config', dest: '/etc/{{ apache_config_dir}}', mode: '0644'}
- name: Enable proxy in debuntu
file: state=link src=/etc/apache2/sites-available
dest=/etc/apache2/sites-enabled
when: is_debuntu and proxy_kalite_serve
- name: Disable proxy in debuntu
file: state=absent src=/etc/apache2/sites-available
dest=/etc/apache2/sites-enabled
when: is_debuntu and not proxy_kalite_serve