Last active
November 16, 2022 15:10
-
-
Save peter-mcconnell/10394636 to your computer and use it in GitHub Desktop.
Elastic Beanstalk - Password protect
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
files: | |
"/etc/httpd/conf.d/allow_override.conf": | |
mode: "000644" | |
owner: ec2-user | |
group: ec2-user | |
encoding: plain | |
content: | | |
<Directory /var/www/html/myproject/> | |
AllowOverride AuthConfig | |
</Directory> | |
"/etc/httpd/conf.d/auth.conf": | |
mode: "000644" | |
owner: ec2-user | |
group: ec2-user | |
encoding: plain | |
content: | | |
<Directory /var/www/html/myproject/> | |
AuthType Basic | |
AuthName "Myproject Prototype" | |
AuthUserFile /etc/httpd/.htpasswd | |
Require valid-user | |
</Directory> | |
"/etc/httpd/.htpasswd": | |
mode: "000644" | |
owner: ec2-user | |
group: ec2-user | |
encoding: plain | |
content: | | |
myusername:mypassword |
Hi, sadly i can not use if for symfony with its very own /www directory. Any Ideas?
http://stackoverflow.com/questions/41673870/elastic-beanstalk-basic-http-auth-for-php-symfony
Hi how to enable AllowOverride in beanstalk (php 7.3) when i am enabling it my php code is visible to brower? any help
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
found it via google, will try it! but looks good - thanks :)