在同一apache http服务器上启动两个应用程序

时间:2019-04-16 10:49:42

标签: apache redhat

我正在处理两个应用程序,并将它们放在同一Apache服务器上。 我已经为每个应用程序在conf和bin上创建了一个文件: apache / conf / httpd_app1.conf:application1 apache / conf / httpd_app2.conf:application2

apache / bin / apachectl_app1 apache / bin / apachectl_app2

我配置了每个虚拟主机,

但是当我指向第一个应用程序时,它会将我重定向到其他应用程序,有时甚至是相反。 我不明白自己想念的事和必须做的事。

1 个答案:

答案 0 :(得分:0)

将此代码添加到httpd.conf

<VirtualHost 172.20.30.40:80>
    ServerAdmin webmaster@www1.example.com
    DocumentRoot "/www/vhosts/www1"
    ServerName www1.example.com
    ErrorLog "/www/logs/www1/error_log"
    CustomLog "/www/logs/www1/access_log" combined
</VirtualHost>

<VirtualHost 172.20.30.50:80>
    ServerAdmin webmaster@www2.example.org
    DocumentRoot "/www/vhosts/www2"
    ServerName www2.example.org
    ErrorLog "/www/logs/www2/error_log"
    CustomLog "/www/logs/www2/access_log" combined
</VirtualHost>