我已经购买了这个域名 - > cdnwknet.com是我的cookie免费域名。我想从中提供静态内容。
我需要做的就是正确设置它。目前它不起作用,因为我希望它工作。我已将图像放在该域上,可在此处查看 - > cdnwknet.com/img/index.php。我只使用scandir在IMG的该文件夹中显示图像,因此图像位于该域的该文件夹中。
我测试过调用我网站上的图片 - > https://www.damircalusic.se/portfolio/而不是我运行GTMETRIX以查看它们是否作为静态图像提供,但它们并不像您在本报告中看到的那样 - > http://gtmetrix.com/reports/www.damircalusic.se/YGFX2COr和YSLOW,CDN。
所以我的简单问题是:如何配置cdnwknet.com域?
我真的很感激任何帮助!
我的配置目前看起来像这样:
server {
listen 80;
listen [::]:80;
servername cdnwknet.com www.cdnwknet.com;
addheader Strict-Transport-Security max-age=15768000;
return 301 https://www.cdnwknet.com$request_uri;
}
server {
listen 443 ssl;
server_name cdnwknet.com;
ssl_certificate /etc/nginx/ssl/bundle.crt;
ssl_certificate_key /etc/nginx/ssl/KEY.key;
return 301 https://www.cdnwknet.com$request_uri;
}
server {
listen 443 ssl;
server_name www.cdnwknet.com;
root /var/www/cdnwknet.com/html;
index index.php index.html index.htm;
ssl_certificate /etc/nginx/ssl/bundle.crt;
ssl_certificate_key /etc/nginx/ssl/KEY.key;
error_page 403 /error/403.html;
error_page 404 /error/404.html;
include /etc/nginx/general-top.conf;
if ( $request_uri ~ ^(/index\.php)$ ) {
return 301 https://www.cdnwknet.com;
}
location / {
try_files $uri $uri/ =404;
access_log off;
log_not_found off;
expires max;
add_header Pragma public;
add_header Cache-Control "public, must-revalidate, proxy-revalidate";
tcp_nodelay off;
break;
}
location ~ \.php$ {
try_files $uri =404;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass unix:/var/run/php5-fpm.sock;
fastcgi_hide_header Set-Cookie;
fastcgi_ignore_headers Set-Cookie;
fastcgi_index index.php;
include fastcgi_params;
}
location = /error/403.html {
root /var/www/cdnwknet.com/html;
allow all;
}
location = /error/404.html {
root /var/www/cdnwknet.com/html;
allow all;
}
}
祝你好运
答案 0 :(得分:0)
它与您的配置无关。 C 内容 D elivery 网络不是您刚刚在Namecheap上购买的其他域名后面的虚拟服务器。它是一个基于任播的复杂系统,使用来自世界多个位置的BGP公告,并在数据中心之间同步内容。
这样做的目的是通过提供来自最近地理位置的请求来提供更好的用户体验,以便为物理上离服务器太远的用户摆脱过多的往返时间,从而承受高负载时间。如果您没有(大)基础设施可供您自己托管,则需要从第三方获得此服务。