gpt4 book ai didi

linux - NGINX cookie 免费域配置设置小问题

转载 作者:太空宇宙 更新时间:2023-11-04 03:49:56 25 4
gpt4 key购买 nike

我已经购买了这个域名 --> 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;
}
}

致以诚挚的问候

最佳答案

与你的配置无关。 内容内容D交付网络不是您刚刚在 Namecheap 上购买的附加域后面的虚拟服务器。它是一个基于选播的复杂系统,使用来自世界多个位置的 BGP 公告并在数据中心之间同步内容。

这样做的目的是通过尽可能从最近的地理位置提供请求来提供更好的用户体验,从而消除距离服务器太远的用户的过多往返时间,从而避免加载时间过长。如果您没有可用的(大型)基础设施来自行托管该服务,则需要从第三方支付此服务的费用。

关于linux - NGINX cookie 免费域配置设置小问题,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26693106/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com