使用自定义 httpd.conf 启动 apache2
有没有办法使用 apachectl 启动 apache 并将非默认 httpd.conf 的路径传递给它?我想避免弄乱标准配置文件。我知道我必须以 root 身份启动它,但这会帮助我玩。
Is there a way how to start apache using apachectl and passing a path to a non-default httpd.conf to it? I would like to avoid messing with the standard config files. I know I will have to start it as root nevertheless, but It would help me to play around.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
apachectl
不提供使用自定义配置文件的功能。您必须执行 httpd 本身才能做到这一点。apachectl
does not provide functionality for using custom config file. You have to executehttpd
itself in order to do that.根据 https:// /www.techrepublic.com/blog/linux-and-open-source/control-apache-with-the-apachectl-command/ 这是通过 -f 参数完成的。
例子:
according to https://www.techrepublic.com/blog/linux-and-open-source/control-apache-with-the-apachectl-command/ this is done with the -f parameter.
Example: