Puppet Class: matomo::params
- Inherited by:
-
matomo
- Defined in:
- manifests/params.pp
Summary
This class will include all variables used in the module include matomo::paramsOverview
This class will include all variables used in the module
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 |
# File 'manifests/params.pp', line 6
class matomo::params {
# matomo params
$package_version = 'latest'
$docroot = '/var/www/html'
$package_manage = true
# mysql params
$root_password = 'Crackme_iF_you_can_pleasE'
$remove_default_accounts = true
$matomo_db_user = 'matomo'
$matomo_db_password = 'Crackme_iF_you_can_pleasE'
$matomo_db_name = 'matomo'
$host = 'localhost'
$grant = ['ALL']
$sql_backup_file = undef
$enforce_sql = true
# nginx params
$site_name = 'matomo.local'
$listen_port = 80
$www_root = "${docroot}/matomo"
$use_default_location = false
$mode = '0755'
$ssl = false
$ssl_key = undef
$ssl_cert = undef
$ensure = present
$location = '~* \.php$'
$fastcgi = '127.0.0.1:9000'
$include = undef
$fastcgi_param = undef
$index_secure = false
$location_allow = ['127.0.0.1']
$ssl_redirect = false
}
|