Puppet Class: role::phabricator

Defined in:
modules/role/manifests/phabricator.pp

Overview

phabricator instance



3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# File 'modules/role/manifests/phabricator.pp', line 3

class role::phabricator {

    system::role { 'phabricator':
        description => 'Phabricator (Main) Server'
    }

    include ::profile::base::production
    include ::profile::firewall
    include ::profile::backup::host
    include ::profile::phabricator::main
    include ::profile::phabricator::logmail
    include ::profile::phabricator::httpd
    include ::profile::phabricator::monitoring
    include ::profile::phabricator::performance
    include ::profile::phabricator::datasync
    include ::profile::prometheus::apache_exporter
    include ::profile::tlsproxy::envoy # TLS termination
    include ::rsync::server # copy repo data between servers
}