我使用nginx制作了virtual host
,我已添加到host
:
127.0.0.1 testapp
我的http://testapp
上可以使用虚拟主机VPS
,但无法访问互联网:
server {
listen 80;
server_name testapp testapp.51.x.x.172;
##root html;
root c:/apps/web;
index index.html index.htm;
}
答案 0 :(得分:1)
您遇到tf.data
问题。
您必须在主机上定义DNS
,例如CNAME record
FQDN将为testapp
,目标主机应为您已注册testapp.yourdomain.com
的{{1}}。
在您的主机中,您应该添加此行。
yourdomain.com
你的问题已经完成
但您可能需要在Web服务器上完成A record
。