gpt4 book ai didi

php - 在 apache 的两个不同端口运行两个 php 应用程序

转载 作者:可可西里 更新时间:2023-10-31 22:58:03 25 4
gpt4 key购买 nike

我在同一台机器上有两个示例应用程序。它是PHP。我需要开发支持跨域 cookie 的应用程序。所以,现在我正在尝试在 apache 服务器的不同端口上运行两个应用程序。为此,我更改了 httpd.conf 中的端口号。就像我添加的收听 8080而且我不了解

VirtualHost *:80  
ServerAdmin webmaster@dummy-host.example.com
DocumentRoot /www/docs/dummy-host.example.com
ServerName dummy-host.example.com
ErrorLog logs/dummy-host.example.com-error_log
CustomLog logs/dummy-host.example.com-access_log common

请让我知道如何为我的第二个端口 8080 添加它。我从浏览器以 xxx.xx.x.xx/First/Cookies 运行我的应用程序。我试过 xxx.xx.x.xx:80/First/Cookies.----这很好,我怎样才能为我的第二个应用程序尝试 8080。请指导我。

最佳答案

这应该是您需要的最低限度。随意添加其他有用的指令。

Listen 80
<VirtualHost *:80>
DocumentRoot /home/x/z/
... the usual stuff ...
</VirtualHost>

Listen 20117
<VirtualHost *:20117>
DocumentRoot /home/x/y/public_html
</VirtualHost>

关于php - 在 apache 的两个不同端口运行两个 php 应用程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8709970/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com