Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有两个不同的应用程序,它们在两个 Apache 服务器上使用相同的实例。在每个 http 服务器上,我对每个应用程序都有相同的配置 - 唯一的区别是 IP 地址。有没有办法从 httpd.conf 中提取 IP 地址并将其包含在 conf 中或为 IP 地址定义一个变量?
任何想法都会有所帮助,谢谢。
这更像是一个关于 serverfault 的问题,但我试着猜测你的目的。
所以你可以包括<VirtualHost *:80>而不是<VirtualHost 192.168.0.4:80>可能会解决你的问题。不需要在那里添加IP。
<VirtualHost *:80>
<VirtualHost 192.168.0.4:80>