-
Notifications
You must be signed in to change notification settings - Fork 0
/
appspec.yml
38 lines (38 loc) · 884 Bytes
/
appspec.yml
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
version: 0.0
os: linux
files:
- source: /WordPress
destination: /var/www/html/worldpress
- source: /dbconfig/wp-config.php
destination: /var/www/html/worldpress
- source: /scripts/mysql.resp
destination: /var/tmp
hooks:
BeforeInstall:
- location: scripts/install_dep.sh
timeout: 300
runas: root
AfterInstall:
- location: scripts/change_perm.sh
timeout: 300
runas: root
ApplicationStart:
- location: scripts/start_srv.sh
timeout: 300
runas: root
- location: scripts/secure_mysql_db.sh
timeout: 300
runas: root
- location: scripts/create_wp_db.sh
timeout: 300
runas: root
ApplicationStop:
- location: scripts/stop_srv.sh
timeout: 300
runas: root
permissions:
- object: /var/www/html/worldpress
pattern: "**"
owner: apache
group: apache
mode: 750