本文介绍了如何在ddev上启用Apache模块?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在将 webserver-type:apache-fpm
与ddev一起使用,并且需要启用一个模块。我该怎么做?
I'm using webserver-type: apache-fpm
with ddev and need to enable a module. How do I do that?
推荐答案
您可以在 a2enmod
中使用Web容器,然后 apachectl graceful
重新启动apache来获取更改。
You can use a2enmod
in the web container and then apachectl graceful
to restart apache to pick up the changes.
因此 ddev ssh
,然后 a2enmod标头&& apache2ctl graceful
(如果您启用了标头模块)
So ddev ssh
and then a2enmod headers && apache2ctl graceful
(if you were enabling the "headers" module)
使用ddev exec: ddev exec a2enmod标头&& apache2ctl优美
Using ddev exec: ddev exec "a2enmod headers && apache2ctl graceful"
使用启动后钩子:
hooks:
post-start:
- exec: a2enmod headers && apache2ctl graceful
这篇关于如何在ddev上启用Apache模块?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!