-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathLinux.yaml
More file actions
52 lines (51 loc) · 1.21 KB
/
Linux.yaml
File metadata and controls
52 lines (51 loc) · 1.21 KB
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
---
apache::settings:
package_name: 'apache2'
service_name: 'apache2'
config_file_path: '/etc/apache2/httpd.conf'
init_file_path: '/etc/conf.d/apache2'
config_dir_path: '/etc/apache2'
conf_dir_path: '/etc/apache2/conf.d'
pid_file_path: '/var/run/apache2/httpd.pid'
log_file_path: ['/var/log/apache2/access.log', '/var/log/apache2/error.log']
log_dir_path: '/var/log/apache2'
data_dir_path: '/var/www'
process_name: 'httpd'
process_user: 'apache'
process_group: 'apache'
modules_dir_path: '/usr/lib/apache2'
# Version 4 format
packages:
main:
name: apache2
services:
apache2:
process_name: httpd
process_user: apache
process_group: apache
files:
config:
path: "/etc/apache2/httpd.conf"
log:
path:
- "/var/log/apache2/access.log"
- "/var/log/apache2/error.log"
init:
path: "/etc/conf.d/apache2"
pid:
path: "/var/run/apache2/httpd.pid"
user_files:
config:
path: "$HOME/.apache2/httpd.conf"
dirs:
config:
path: "/etc/apache2"
conf:
path: "/etc/apache2/conf.d"
log:
path: "/var/log/apache2"
data:
path: "/var/www"
user_dirs:
config:
path: "$HOME/.apache2"