I have a working setup of the codedeploy which deploys when I commit to my repository. Following is my appspec.yml configuration -
version: 0.0
os: linux
files:
- source: /
destination: /var/www/html/
permissions:
- object: /var/www/html/rentals
pattern: "**"
owner: apache
mode: 777
type:
- directory
Problem is though i have .htaccess file on git, Codedeploy ignoring this file.