Questions tagged «subdomain»

子域是属于较大域的一部分的域。例如,“ sub.example.com”是“ example.com”域的子域。

2
Nginx子域配置
我让Nginx充当Apache的反向代理。现在,我需要添加一个新的子域,该子域将为另一个目录中的文件提供服务,但是同时,我希望默认主机拥有的所有location和proxy_pass指令也适用于该子域。 我知道,如果我将规则从默认主机复制到新的子域,它将起作用,但是子域是否可以继承规则?下面是一个示例配置 server { listen 80; server_name www.somesite.com; access_log logs/access.log; error_log logs/error.log error; location /mvc { proxy_pass http://localhost:8080/mvc; } location /assets { alias /var/www/html/assets; expires max; } ... a lot more locations } server { listen 80; server_name subdomain.somesite.com; location / { root /var/www/some_dir; index index.html index.htm; } } 谢谢
78 nginx  subdomain 

5
子域的HTML5 localStorage大小限制
HTML5的localStorage数据库通常受大小限制-每个域的标准大小为5或10 MB。子域可以绕过这些限制吗(例如example.com,hack1.example.com和hack2.example.com都有自己的5 MB数据库)?标准中是否有任何内容指定父域是否可以访问其子级数据库?我什么也找不到,而且可以看到以任何一种方式执行此操作的参数,但似乎必须要有一些标准模型。

3
用于通配符子域和静态子域的Virtualhost
我有一个奇怪的情况,我想拥有URL app1.example.com,example.com并且*.example.com 都使用不同的虚拟主机。这就是我所拥有的(不包括example.com因为它使它更混乱)。 <VirtualHost *> ServerName app1.example.com ServerAlias app1.example.com DocumentRoot = /var/www/app1 # Other configuration for this app here </VirtualHost> <VirtualHost *> ServerName wildcard.example.com ServerAlias *.example.com DocumentRoot = /var/www/wildcard # other configuration for this app here </VirtualHost> 问题是它们发生冲突。首先列出的那个胜出。如何同时托管通配符虚拟主机和特定主机? 注意:我不只是DocumentRoot在配置中mod_rewrite进行更改,因此使用更改DocumentRoot变量并不能解决该问题。

3
通过DNS的多个GitHub页面和自定义域
我希望有一个用户页面和多个项目页面由GitHub Pages托管,但可以在一个自定义域下使用(当然,每个GitHub Pages存储库都有子域)。所以我的目标如下: 一个用户页面(http://florianwolters.github.com)获得http://blog.florianwolters.de,http://www.florianwolters.de和http://florianwolters.de。 我希望的项目页面尽可能多(例如http://florianwolters.github.com/pear在http://pear.florianwolters.de下提供)。 由于我目前的理解,GitHub的页面是只允许ONE CNAME资源记录的页面(用户页面和项目页)中定义CNAME的Git仓库的根文件。我已经尝试了很多方法(在域名提供商EUserv上处理DNS记录和标头重定向),但是我只能在一个URL(http://blog.florianwolters.de)下访问GitHub用户页面。更改可能要持续两天。 有人可以向我解释我如何实现上述目标吗?我不敢相信这是不可能的,但我也不是DNS等方面的专家。 如果上述方法不可行:建议的解决方法是什么?我确实想访问一个域(以及该域的子域)下的所有GitHub页面。 资源资源 http://help.github.com/pages/ GitHub项目页面的自定义域 https://groups.google.com/forum/?fromgroups#!topic/github/AaAuoDK44Ag https://github.com/blog/315-cname-support-for-github-pages http://code.lancepollard.com/custom-domain-github-pages

4
如何在IIS 7上设置子域
我有一个坐在IIS 7服务器上的网站: WWW.example.COM 我想创建几个看起来像SUBDOMAIN1.example.COM的子域 我创建了一个IIS网站,并将绑定设置为http,端口80,服务器的ip地址和SUBDOMAIN1.example.COM以及example.COM下文件夹的物理路径。 我重新启动了网站,然后单击浏览器,浏览器打开的地址为:http: //SUBDOMAIN1.example.COM 但是该网站没有显示。 我必须对DNS做些事情吗?
72 asp.net  iis  iis-7  subdomain 
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.