如何将域名指向 Apache Tomcat 服务器?
我有一个域名,我想将其指向我在我的机器上安装并启动的本地apache tomcat服务器(静态IP)
我需要对DNS进行什么样的配置(在域名公司的网站上) )和 tomcat 配置文件 - 我想!
附言。我在具有静态 IP 的 Linux 机器上使用 Tomcat6
非常感谢...
I have a domain name and I want to point it to a local apache tomcat server that I have installed and started on my machine(static IP)
What kind of configuration I need to do with the DNS(at the website of the domain name company) and tomcat configuration files - I assume!
PS. I am using Tomcat6 on a linux machine with static IP
Many thanks...
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果本地apache服务器有可路由的IP地址,则只需在其上设置A记录即可
通过基于 Web 的管理界面访问域名 DNS 服务器。
如果本地 apache 服务器位于私有 IP(即 10.xxx、172.{16-31}.xx 或 192.168.xx)上,则如果不运行本地缓存 DNS 服务器,则无法完成此操作。这些地址是不可路由的。如果是这种情况,并且您可以配置访问执行 NAT 的防火墙/路由器,则可以配置端口转发,在这种情况下,服务器的 DNS 条目将指向防火墙的公共 IP 地址。
If the local apache server has a routable IP address, then just set up the A record on
the domain name DNS server through their web-based management interface.
If the local apache server is on a private IP (i.e. 10.x.x.x, 172.{16-31}.x.x or 192.168.x.x) then you cannot accomplish this without running a local caching DNS server. Those addresses are non-routable. If this is the case AND you have configuration access to the firewall/router doing NAT you could configure port forwarding, in which case the DNS entry for the server would point to your firewall's public IP address.