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
已提問 4 個月前檢視次數 194 次
1 個回答
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
支援工程師
已回答 4 個月前

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南