如何设置域名并将其附加到我的服务器IP地址(Apache2)

时间:2019-05-15 14:48:51

标签: apache dns

我在 IONOS 中有一个ubuntu 18.04的vps。

我已按照this tuto配置apache和新网站。

现在,该网站只能使用ip 地址,而不能使用域名。

这是www.mydomainname.com.conf,位于 / etc / apache2 / sites-available

<VirtualHost *:80>
ServerAdmin admin@mydomainname.com
ServerName  www.mydomainname.com
DocumentRoot /var/www/html/www.mydomainname.com
<Directory /var/www/html/www.mydomainname.com/>
    AllowOverride All
    Require all granted
</Directory>
ErrorLog ${APACHE_LOG_DIR}/error.log
CustomLog ${APACHE_LOG_DIR}/access.log combined
</VirtualHost>

这是我在 / etc / hosts

下的配置
127.0.0.1       localhost.localdomain localhost
127.0.1.1       localhost
82.165.112.22   www.mydomainname.com

# The following lines are desirable for IPv6 capable hosts
::1     localhost ip6-localhost ip6-loopback
ff02::1 ip6-allnodes
ff02::2 ip6-allrouters

仅此而已

0 个答案:

没有答案