Немного запутался видимо в контекстах,
server {
# show cache status and any skip cache reason
add_header Bullet-Proxy-Cache $upstream_cache_status;
add_header Cache-BYPASS-Reason $skip_reason;
# define nginx variables
set $skip_cache 1;
set $skip_reason "";
if ($request_uri ~* "/|/*.html") {
set $skip_cache 0;
set $skip_reason HTML;
}
# security for bypass so localhost can empty cache
if ($remote_addr ~ "^(127.0.0.1|xx.xx.xx.xx)$") {
set $bypass $http_secret_header;
}
# Don't cache URIs containing the following segments
if ($request_uri ~* "/manager/|/*.php|sitemap.xml") {
set $skip_cache 1;
set $skip_reason URI;
}
# skip caching POST
if ($request_method = POST) {
set $skip_cache 1;
set $skip_reason POST;
}
server_name site.ru www.site.ru;
ssl_certificate "/var/www/httpd-cert/www-root/site.ru_le3.crtca";
ssl_certificate_key "/var/www/httpd-cert/www-root/site.ru_le3.key";
ssl_ciphers EECDH:+AES256:-3DES:RSA+AES:!NULL:!RC4;
ssl_prefer_server_ciphers on;
ssl_protocols TLSv1 TLSv1.1 TLSv1.2;
ssl_dhparam /etc/ssl/certs/dhparam4096.pem;
charset UTF-8;
index index.php index.html;
disable_symlinks if_not_owner from=$root_path;
include /etc/nginx/vhosts-includes/*.conf;
include /etc/nginx/vhosts-resources/site.ru/*.conf;
access_log /var/www/httpd-logs/site.ru.access.log;
error_log /var/www/httpd-logs/site.ru.error.log notice;
set $root_path /var/www/www-root/data/www/site.ru;
root $root_path;
location / {
location ~ [^/]\.ph(p\d*|tml)$ {
try_files /does_not_exists @fallback;
}
location ~* ^.+\.(jpg|jpeg|gif|png|svg|js|css|mp3|ogg|mpe?g|avi|zip|gz|bz2?|rar|swf|woff|woff2|ico)$ {
try_files $uri $uri/ @fallback;
expires 30d;
}
location / {
try_files /does_not_exists @fallback;
}
}
location @fallback {
proxy_cache site.ru;
proxy_cache_revalidate on;
proxy_ignore_headers Expires Cache-Control X-Accel-Expires;
proxy_hide_header "Set-Cookie";
expires -1;
proxy_cache_use_stale error timeout invalid_header updating http_500 http_502 http_503 http_504;
proxy_cache_bypass $skip_cache;
proxy_no_cache $skip_cache;
proxy_cache_valid 301 302 0;
proxy_cache_valid 200 24h;
proxy_cache_valid 404 1m;
# mobile users
set $ismobile 0;
if ($http_user_agent ~* '(iPhone|iPod|mobile|Android|2.0\ MMP|240x320|AvantGo|BlackBerry|Blazer|Cellphone|Danger|DoCoMo|Elaine/3.0|EudoraWeb|hiptop|IEMobile)') {
set $ismobile 1;
}
set $isgzip 0;
if ($http_accept_encoding ~* 'gzip') {
set $isgzip 1;
}
proxy_cache_key $request_method|$http_if_modified_since|$http_if_none_match|$host|$request_uri|$is_args|$ismobile|$isgzip;
proxy_pass http://127.0.0.1:8080;
proxy_redirect http://127.0.0.1:8080 /;
proxy_set_header Host $host;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header X-Forwarded-Port $server_port;
access_log off;
}
gzip on;
gzip_comp_level 9;
gzip_disable "msie6";
gzip_types text/plain text/css application/json application/x-javascript text/xml application/xml application/xml+rss text/javascript application/javascript;
listen xx.xx.xx.xx:443 ssl http2;
}
этот конфиг кэширует прокси запросы к apache, при отдаче сообщает в заголовках ответа, если есть в кэше то HIT а если нету то MISS.
Проблема в том что при запросах из браузера (http 2 по логам) запросы кэшируются, первый MISS последующие HIT.
А когда запрос идет через вебмастер (http 1.0 по логам) то все время MISS. Подскажите что я делаю не так? Как сделать чтобы HTTP 1.0 тоже сохранялся в кэше?