I have a CDN that serves our static content. From Internap.
To make the CDN urls in my html a bit more palatable, I have a "CNAME" entry in my DNS settings:
cache.mysite.com
=> CNAME Point to Internap
Internap服务器是一台原始拖车服务器。 因此,我的领域有“/public_html/cache”的倍数,可见于裁谈会。
我在这里提出的一些文件是,我只想从自己的领域服务。
同样重要的是,我的场址落后于Nginx。 这为前线服务器,为诸如tf/woff/eot/cs/js/gif等所有静态档案提供服务。 只有PHP的需求在阿帕奇的后面接近。
我走过了“出入控制-低来源”指令。 Nginx也可这样做( 页: 1
我感到不解的原因是,我有三层人员来为之服务和管理准入:
- CDN
- Nginx static server
- Apache (probably not needed at all as Nginx serves the file to the CDN, and then the CDN takes over?)
我的问题:
- How should I specify some select domains in Nginx. The "*" is really not what I need. Will this work for my domains and also covering related subdomains--
location ~* .(eot|ttf|woff)$ { add_header Access-Control-Allow-Origin *.domain1.com,*.domain2.com }
在Nginx内部,我应具体说明这一组。 在座标书中,涉及I m在哪一个特定领域服务(
cache.mysite.com
前面提到),或涉及Nginx config?我是否完全需要阿帕奇。 如果Nginx正在处理已经使用的网络格式,并控制上网。
感谢!