aboutsummaryrefslogtreecommitdiff
path: root/appspec.yml
blob: ba4346ec5b5e102c6b9517348556ac9227e47f52 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
version: 0.0
os: linux
files:
  - source: /
    destination: /home/ec2-user
hooks:
  BeforeInstall:
    - location: scripts/install_dependencies.sh
      timeout: 300
      runas: root
    - location: scripts/start_server
      timeout: 300
      runas: root
  ApplicationStop:
    - location: scripts/stop_server
      timeout: 300
      runas: root