我的目标是在我的企业局域网(Debian 9 服务器)中的 apache 网络服务器上托管各种站点(本地虚拟主机)。
以便:
- openproject.myenterprise.local => /opt/openproject
- wiki.myenterprise.local => /var/www/location/wiki
- 等等
我在我的 apache2 网络服务器上配置了虚拟主机
- /etc/apache2/sites-available/openproject.conf
ServerName openproject.myenterprise.local
- /etc/apache2/sites-available/000-main-static-site.conf
ServerName vmDebDevSrv1.myenterprise.local ServerAlias salado.myenterprise.local
- /etc/apache2/sites-available/001-wiki.conf
ServerName wiki.myenterprise.local
现在它使用本地配置/etc/hosts
172.16.12.171 openproject.myenterprise.local
172.16.12.171 wiki.myenterprise.local
当我使用 bind9 添加 DNS 解析时,它不再起作用。我想这是因为我的服务器无法中继我使用的 FQDN。
- 当我 ping 或将 url 放入浏览器
wiki
时,它可以工作,但给了我网络服务器的主目录,而不是 wiki 虚拟主机
编辑:ping wiki给了我:
ws1: ~$ ping wiki
PING ns1.myenterprise.local (172.16.10.174): 56 data bytes
64 bytes from 172.16.10.174: icmp_seq=0 ttl=64 time=0.282 ms
^C--- ns1.myenterprise.local ping statistics ---
2 packets transmitted, 2 packets received, 0% packet loss
round-trip min/avg/max/stddev = 0.282/0.325/0.368/0.043 ms
/编辑
- 当我 ping wiki.myenterprise.local 时它不起作用
ping: unknown host
,编辑: nslookup 与 FQDN /Edit一起使用
我的 /etc/resolv.conf
domain myenterprise.local
search myenterprise.local
nameserver 172.16.12.174
nameserver 172.16.12.1
nameserver ...
/etc/bind/db.myenterprise.local
$TTL| 604800
@| IN| SOA| ns1.myenterprise.local. root.vmDebDevSrv1.myenterprise.local. (
| | | 20181129| ; Serial
| | | 604800|| ; Refresh
| | | 86400|| ; Retry
| | | 2419200|| ; Expire
| | | 604800 )| ; Negative Cache TTL
;Name server information
@| IN| NS| ns1.myenterprise.local.
;IP Address of Domain Name Server(DNS) setted on line above
ns1| IN| A| 172.16.12.174
;CNAME Records
vmDebDevSrv1| IN| CNAME| ns1.myenterprise.local.
wiki| IN| CNAME| vmDebDevSrv1.myenterprise.local.
openproject| IN| CNAME| vmDebDevSrv1.myenterprise.local.
;tried too with
;wiki| IN| A 172.16.12.174
;openproject| IN| A 172.16.12.174
我错过了什么?!!!我以为路径是short-name=>DNS=>FQDN=>Apache2=>well page returned
所以我想它不可能得到
当您仅
wiki
在浏览器窗口中输入时,我想说即使操作系统在尝试执行 DNS 查找时添加了搜索域,Host
在 HTTP 请求中发送的标头就是您在浏览器窗口中输入的内容,即Host: wiki
. 为了使它工作,ServerAlias wiki
在你的 Apache 配置中加入一个。您可以粘贴 ping 命令的输出吗?要考虑的一些故障排除步骤: