Skip to content

Instantly share code, notes, and snippets.

@TonSDe
Created November 1, 2018 09:20
Show Gist options
  • Save TonSDe/2b0f0ec98ae7fee55fc78508b794c2ff to your computer and use it in GitHub Desktop.
Save TonSDe/2b0f0ec98ae7fee55fc78508b794c2ff to your computer and use it in GitHub Desktop.
AWS Elastic Beanstalk : Enable .htaccess
files:
"/etc/httpd/conf.d/hello.conf":
mode: "000644"
owner: root
group: root
content: |
<VirtualHost *:80>
DocumentRoot /var/app/current
<Directory /var/app/current/>
Options Indexes FollowSymLinks
AllowOverride All
Require all granted
</Directory>
</VirtualHost>
@db8ly
Copy link

db8ly commented Apr 8, 2021

Thank you very much you, this sorted something I have been trying to deal with all day.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment