Используем один сервер как хранилище для картинок, его настройки:
server {
listen 80;
listen [::]:80;
server_name домен.рф;
root /путь/к/картинкам/здесь;
add_header X-Frame-Options "SAMEORIGIN";
add_header X-Content-Type-Options "nosniff";
index index.php;
charset utf-8;
location ~* \.(eot|ttf|woff|woff2)$ {
add_header Access-Control-Allow-Origin *;
}
location / {
try_files $uri $uri/ /index.php?$query_string;
}
large_client_header_buffers 4 16k;
location /media/{
autoindex off;
alias /var/stires/storage/app/public/;
}
location = /favicon.ico { access_log off; log_not_found off; }
location = /robots.txt { access_log off; log_not_found off; }
location ~ \.php$ {
fastcgi_pass unix:/var/run/php/php8.1-fpm.sock;
fastcgi_param SCRIPT_FILENAME $realpath_root$fastcgi_script_name;
include fastcgi_params;
}
location ~ /\.(?!well-known).* {
deny all;
}
}
Сервер на котором бекенд и блок nginx относящийся к картинкам:
location /storage/ {
access_log off;
autoindex off;
limit_req zone=static burst=100 nodelay;
proxy_pass http://домен.рф/media/;
proxy_redirect off;
expires 14d;
}
Используем клауд. Проблема:
не пойму как добиться выдачи картинок из кеша.
Что только не пробовал, по итогу -
<b>cache-control
no-cache, private</b>
cf-cache-status
BYPASS
cf-ray
content-type
image
date
server
cloudflare