Beanstalk HTTPD - Allow AllowOverride All

0

I am working on a php web app with will deploy on Beanstalk with Amazon Linux 2023 running PHP 8.2 and using Apache. How do you change the AllowOverride none to AllowOverride All in httpd.conf. I have tried with .platform and .ebextension yaml configs.

What I am missing to make this work?

lerouxj
asked 3 months ago174 views
1 Answer
0

Hello.

According to AWS's official document [1],

place *.conf configuration files to a folder named .platform/httpd/conf.d in your application source bundle to extend the Elastic Beanstalk default Apache configuration.

Then the Elastic Beanstalk Apache configuration includes .conf files in this folder automatically.

~/workspace/my-app/
|-- .ebextensions
|   -- httpd-proxy.config
|-- .platform
|   -- httpd
|      -- conf.d
|         -- port5000.conf
|         -- ssl.conf
-- index.jsp

In addition, to override the Elastic Beanstalk default Apache configuration completely, include a configuration in your source bundle at .platform/httpd/conf/httpd.conf.

~/workspace/my-app/
|-- .ebextensions
|   -- httpd-proxy.config
|-- .platform
|   `-- httpd
|       `-- conf
|           `-- httpd.conf
`-- index.jsp

And If you override the Elastic Beanstalk Apache configuration, add the following lines to your 'httpd.conf' file to pull in the Elastic Beanstalk configurations for Enhanced health reporting and monitoring, automatic application mappings, and static files.

IncludeOptional conf.d/elasticbeanstalk/*.conf

I hope the information shared above helps. If you have any additional questions, queries or problems, please feel free to tell me through comment.

Thank you.

Reference:

[1] Extending Elastic Beanstalk Linux platforms - Reverse proxy configuration - 'Configuring Apache HTTPD' section

https://docs.aws.amazon.com/elasticbeanstalk/latest/dg/platforms-linux-extend.html

profile pictureAWS
SUPPORT ENGINEER
answered 3 months ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions