gpt4 book ai didi

subdomain - Plesk 中具有不同端口的子域

转载 作者:行者123 更新时间:2023-12-03 15:46:16 27 4
gpt4 key购买 nike

如果这是一个愚蠢的问题,我深表歉意,但我是 Plesk 的新手(以及一般的虚拟服务器)。我有一台运行 Centos 和 Plesk 12 的服务器,我的域和网站运行良好。目前我还有一个 Dreamfactory 的实例在端口 82 上运行(所以在 http://example.com:81 访问它)但我想知道是否可以使用 plesk 设置子域,例如 http://api.example.com这将加载我的梦想工厂实例而不转发到 http://example.com:81 (有效地屏蔽端口号)。

最佳答案

打开子域的“Apache & nginx 设置”并添加到“HTTP 的附加指令”中:

# for Apache
ProxyPass / http://example.com:81/

或者
# for Nginx
location ~ / {
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
proxy_pass http://example.com:81;
}

plesk sub domain different port

像这样的 Apache:
plesk sub domain different port

或者像这样的nginx:
plesk sub domain different port

关于subdomain - Plesk 中具有不同端口的子域,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37248699/

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