diff --git a/appspec.yml b/appspec.yml index fd13dcc..8349bd2 100644 --- a/appspec.yml +++ b/appspec.yml @@ -2,21 +2,21 @@ version: 0.0 os: linux files: - source: / - destination: /var/www/html + destination: /usr/share/nginx/html permissions: - - object: /var/www/html + - object: /usr/share/nginx/html pattern: "**" - owner: apache - group: apache + owner: nginx + group: nginx mode: 755 type: - file -hooks: - BeforeInstall: - - location: scripts/installapache.sh - runas: root - - location: scripts/startapache.sh - runas: root - AfterInstall: - - location: scripts/restartapache.sh - runas: root +# hooks: +# BeforeInstall: +# - location: scripts/installapache.sh +# runas: root +# - location: scripts/startapache.sh +# runas: root +# AfterInstall: +# - location: scripts/restartapache.sh +# runas: root