标签: subdomain hosting plesk
如果这是一个愚蠢的问题,请道歉,但我是Plesk的新手(以及一般的虚拟服务器)。我有一台运行Centos和Plesk 12的服务器,我的域名和网站运行正常。目前我还有一个在端口82上运行的Dreamfactory实例(所以在http://example.com:81访问它)但我想知道是否可以设置一个带有plesk的子域,例如http://api.example.com,这将加载我的梦工厂实例,而不转发到http://example.com:81(有效屏蔽端口号)。
答案 0 :(得分:7)
打开子域" 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; }
像Apache一样:
或者像nginx这样: