-
Notifications
You must be signed in to change notification settings - Fork 2
/
appspec.yml
35 lines (35 loc) · 949 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
version: 0.0
os: linux
files:
- source: /index.html
destination: /var/vhosts/getexpressive.org/htdocs/index.html
- source: /171540.json
destination: /var/vhosts/getexpressive.org/htdocs/171540.json
- source: /css
destination: /var/vhosts/getexpressive.org/htdocs/css
- source: /js
destination: /var/vhosts/getexpressive.org/htdocs/js
- source: /vendor
destination: /var/vhosts/getexpressive.org/htdocs/vendor
- source: /img
destination: /var/vhosts/getexpressive.org/htdocs/img
permissions:
- object: /var/vhosts/getexpressive.org/htdocs
pattern: "**"
owner: www-data
group: www-data
mode: 4750
type:
- directory
- object: /var/vhosts/getexpressive.org/htdocs
pattern: "**"
owner: www-data
group: www-data
mode: 640
type:
- file
hooks:
BeforeInstall:
- location: .aws/before-install.sh
timeout: 300
runas: root