Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
ansible / community / zabbix / roles / zabbix_web / tasks / apache_RedHat.yml
Size: Mime:
---

- include_tasks: apache.yml

- name: "RedHat | Install apache vhost"
  template:
    src: apache_vhost.conf.j2
    dest: /etc/httpd/conf.d/zabbix.conf
    owner: "{{ zabbix_web_conf_web_user }}"
    group: "{{ zabbix_web_conf_web_group }}"
    mode: 0644
  when: zabbix_vhost
  become: true
  notify:
    - restart apache
  tags:
    - zabbix-server