1
0
Fork 0
mirror of https://github.com/iiab/iiab.git synced 2025-02-13 19:52:06 +00:00
iiab/roles/nginx/tasks/disable.yml

31 lines
1.2 KiB
YAML
Raw Normal View History

2019-11-19 06:13:41 +00:00
#grep -r "not nginx_enabled" roles/
#roles/calibre-web/tasks/main.yml: when: calibreweb_enabled | bool and not nginx_enabled | bool
#roles/calibre-web/tasks/main.yml: when: not nginx_enabled | bool
#roles/kolibri/tasks/main.yml: when: kolibri_enabled | bool and not nginx_enabled | bool
#roles/kolibri/tasks/main.yml: when: not nginx_enabled | bool
#roles/kiwix/tasks/kiwix_install.yml: when: kiwix_enabled | bool and not nginx_enabled | bool
#roles/kiwix/tasks/kiwix_install.yml: when: not nginx_enabled | bool
#roles/nginx/tasks/main.yml: when: not nginx_enabled | bool
#roles/nginx/tasks/main.yml: when: not nginx_enabled | bool
#roles/sugarizer/tasks/install.yml: when: sugarizer_enabled | bool and not nginx_enabled | bool
#roles/sugarizer/tasks/install.yml: when: sugarizer_enabled | bool and not nginx_enabled | bool
2019-11-28 11:08:43 +00:00
- name: Enable Gitea for Apache
command: a2ensite gitea.conf
2019-11-19 06:13:41 +00:00
- name: Enable Calibre-Web for Apache
command: a2ensite calibre-web.conf
- name: Enable Kolibri for Apache
command: a2ensite kolibri.conf
- name: Enable kiwix for Apache
command: a2ensite kiwix.conf
- name: Enable Sugarizer for Apache
command: a2ensite sugarizer.conf
2019-11-19 17:25:51 +00:00
- name: Enable AWStats for Apache
command: a2ensite awstats.conf