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
demandé il y a 4 mois194 vues
1 réponse
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
INGÉNIEUR EN ASSISTANCE TECHNIQUE
répondu il y a 4 mois

Vous n'êtes pas connecté. Se connecter pour publier une réponse.

Une bonne réponse répond clairement à la question, contient des commentaires constructifs et encourage le développement professionnel de la personne qui pose la question.

Instructions pour répondre aux questions