我的 Linux 服务器的 8080 端口上运行着一个 node.js 站点。在同一个服务器上,还有一个 80 端口上运行的 PHP 站点 (bugzilla)。因此,我当前的配置如下:
- http://example.com:8080(node.js 应用程序)
- http://example.com/bugzilla(bugzilla 网站)
我想让两个站点都在端口 80 上运行,如下所示:
- http://example.com/mynodejs(node.js 应用程序)
- http://example.com/bugzilla(bugzilla 网站)
那可能吗?