我们有一个现有的域名
(例如webdev.com)
位于hostgator中,我们在AWS中有一台服务器。我们想使用从hostgator购买的域名
(webdev.com)
在我们的AWS服务器中。
我们做的是,在hostgator中我们创建了一个DNS(project1.webdev.com),地址指向我们的AWS服务器(ex 150.12.1.0)。在我们的AWS中,我们在端口4000下部署project1。
现在,如果我们访问
project1.webdev.com
我们最终到了默认的apache页面。我们如何将它路由到我们的端口4000,以便每当我们访问project1.webdev.com时它指向我们的
150.12.1.0:4000
项目。
这是我们的虚拟主机配置:
<VirtualHost *:4000>
ServerName project1.webdev.com
ServerAdmin webmaster@dummy-host.example.com
DocumentRoot "/var/www/html/project1/web"
<Directory "/var/www/html/project1/web">
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
Allow from all
</Directory>
ErrorLog ${APACHE_LOG_DIR}/4000-error_log
CustomLog ${APACHE_LOG_DIR}/4000-access_log common
我们已经查找了一些信息,但我们没有找到任何可能的解决方案。期待您的帮助。
由于
答案 0 :(得分:2)
您将DNS与IP地址混淆,后者与DNS无关,这些端口与DNS无关。 DNS仅处理人类可读名称和IP地址之间的转换。 DNS不提供任何类型的规定来执行“当用户想要发出HTTP请求时使用端口4000而不是端口80”这样的任务。
如果您的服务正在侦听端口4000,但您正在使用HTTP协议(默认情况下始终使用端口80),那么您需要通过以下方式之一处理此问题:
text
答案 1 :(得分:0)
与您分享我们制定的解决方案。感谢@Bruce帮助我们。正如他在上面的评论中所建议的那样,我们将创建一个移植到80的虚拟主机(这是apache的默认设置)。然后我们将端口80路由到我们的特定项目。
<VirtualHost *:80>
# The ServerName directive sets the request scheme, hostname and port that
# the server uses to identify itself. This is used when creating
# redirection URLs. In the context of virtual hosts, the ServerName
# specifies what hostname must appear in the request's Host: header to
# match this virtual host. For the default virtual host (this file) this
# value is not decisive as it is used as a last resort host regardless.
# However, you must set it for any further virtual host explicitly.
#ServerName www.example.com
ServerName project1.webdev.com
ServerAdmin webmaster@localhost
DocumentRoot "/var/www/html/project1/web"
# Available loglevels: trace8, ..., trace1, debug, info, notice, warn,
# error, crit, alert, emerg.
# It is also possible to configure the loglevel for particular
# modules, e.g.
#LogLevel info ssl:warn
ErrorLog ${APACHE_LOG_DIR}/project1-error.log
CustomLog ${APACHE_LOG_DIR}/project1-access.log combined
# For most configuration files from conf-available/, which are
# enabled or disabled at a global level, it is possible to
# include a line for only one particular virtual host. For example the
# following line enables the CGI configuration for this host only
# after it has been globally disabled with "a2disconf".
#Include conf-available/serve-cgi-bin.conf
</VirtualHost>
如果你有多个DNS,只需创建端口80的另一个实例并路由到项目。
确保HostGator中的域名与您在虚拟主机中创建的ServerName匹配。