apache-formula/apache/map.jinja

37 lines
1001 B
Plaintext
Raw Normal View History

2013-08-23 05:14:28 +02:00
{% set apache = salt['grains.filter_by']({
'Debian': {
'server': 'apache2',
'service': 'apache2',
2013-08-27 04:45:38 +02:00
'mod_wsgi': 'libapache2-mod-wsgi',
'vhostdir': '/etc/apache2/sites-available',
'confdir': '/etc/apache2/conf.d',
'logdir': '/var/log/apache2',
'wwwdir': '/srv',
2013-08-23 05:14:28 +02:00
},
'RedHat': {
'server': 'httpd',
'service': 'httpd',
2013-08-27 04:45:38 +02:00
'mod_wsgi': 'mod_wsgi',
2014-01-30 03:12:47 +01:00
'wsgi_conf': '/etc/httpd/conf.d/wsgi.conf',
'vhostdir': '/etc/httpd/conf.d',
'confdir': '/etc/httpd/conf.d',
'logdir': '/var/log/httpd',
'wwwdir': '/var/www',
2013-08-23 05:14:28 +02:00
},
2014-01-30 03:12:47 +01:00
'FreeBSD': {
'server': 'apache22',
'service': 'apache22',
'mod_wsgi': 'ap22-mod_wsgi3',
'vhostdir': '/usr/local/etc/apache22/Includes',
'confdir': '/usr/local/etc/apache22/Includes',
'logdir': '/var/log/',
'wwwdir': '/usr/local/www/apache22/',
},
2013-08-23 05:14:28 +02:00
}, merge=salt['pillar.get']('apache:lookup')) %}