将外部域指向子域
我试图实现的是一个简单的域,指向我拥有的示例
www.domain.tdl
并提供给用户
username.domain.tdl
,效果很好。
但是,一旦我想要启用域指向(他们在自己的域上创建子域的 CNAME 条目),我就必须为网络服务器中的每个域设置一条记录,然后重新启动它。
我如何使用 Apache 实现这样的构造?
最好的方法是什么?
最好的例子可能是 Google Mail:您可以获得 mail.yourdomain.tl
What I try to achive is a simple domain pointing to example I have
www.domain.tdl
and supply to the users
username.domain.tdl
which works great.
But as soon as I want to enable a domain pointing (they create a CNAME entry on there own domain to the subdomain) I would have to setup a record for each domain in the webserver and restart it after.
How would I achieve such a construct with Apache?
And what's the best way of doing that?
The best example for that is probably Google Mail: you can get mail.yourdomain.tl
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
如果虚拟主机中未定义的域指向它,它将自动使用第一个虚拟主机。
因此,如果您确保该网站是第一个虚拟主机,它将自动工作。
If a domain points to it which isn't defined in the vhosts it will automatically use the first vhost.
So if you make sure the website is the first vhost it will automically work.
如果我理解正确的话,您可以使用一些 bash/sh 脚本来添加新部分/扩展您的 apache2.conf 或 vhosts.conf 。
You can use some bash/sh script to add new part/extend your apache2.conf or vhosts.conf if I understood you correctly.
只要让 Apache 回答所有问题即可,不要通过域来限制它。确保该虚拟主机是该服务器上第一个加载的虚拟主机。您可以通过命名来实现此目的,例如
/etc/apache2/sites-available/0001-myservice
。Just have your Apache answer to everything and do not restrict it by domain. Be sure that this vhost is the first one to be loaded on this server. You can achieve this by naming it, e.g.
/etc/apache2/sites-available/0001-myservice
.还有另一个可能的选项:使用通配符子域配置虚拟主机。一样:
There are another possible option: configure vhost with wildcard subdomain. Just alike: