mirror of
https://github.com/iiab/iiab.git
synced 2025-03-09 15:40:17 +00:00
apache module for wsgi required
This commit is contained in:
parent
2d9704947c
commit
7705c99650
1 changed files with 16 additions and 0 deletions
|
@ -6,6 +6,22 @@
|
|||
- python-dateutil
|
||||
- sqlite3 # @georgehunt hopes to move this to 2-common (or more like stage 3-base-server, alongside MySQL) in October 2018
|
||||
|
||||
- name: Install wsgi (debuntu)
|
||||
package:
|
||||
name: "{{ item }}"
|
||||
state: present
|
||||
with_items:
|
||||
- libapache2-mod-wsgi
|
||||
when: is_debuntu
|
||||
|
||||
- name: Install wsgi (not debuntu)
|
||||
package:
|
||||
name: "{{ item }}"
|
||||
state: present
|
||||
with_items:
|
||||
- mod_wsgi
|
||||
when: not is_debuntu
|
||||
|
||||
- name: Create directory /opt/iiab/captive-portal for scripts & templates
|
||||
file:
|
||||
path: /opt/iiab/captive-portal
|
||||
|
|
Loading…
Add table
Reference in a new issue