aboutsummaryrefslogtreecommitdiffstats
path: root/roles/gathio/vars/main.yml
blob: 59854fd798c9d49fcc8d00c491cdba70d14a95ef (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
gathio_packages:
  - mongodb-org
  - nodejs
  - git
  - make
  - gcc
  - g++

gathio_git_repo: https://github.com/lowercasename/gathio
gathio_home: /var/lib/gathio
gathio_install_dir: '{{ gathio_home }}/gathio'

gathio_apache_config: |
  {{ apache_proxy_config }}
  ProxyPass        / http://127.0.0.1:{{ gathio_port }}/
  ProxyPassReverse / http://127.0.0.1:{{ gathio_port }}/

gathio_mongodb_selinux_policy_te: |
  require {
    type sysctl_fs_t;
    type var_lib_nfs_t;
    type mongod_t;
    class dir search;
  }

  #============= mongod_t ==============
  allow mongod_t sysctl_fs_t:dir search;
  allow mongod_t var_lib_nfs_t:dir search;