我正在使用cloudfront設置cdn。我的雲端分佈的起源是我的aws負載平衡器(ELB)。當我向雲端請求而不是獲取雲端地址(cdn.mysite.com/images/image.jpg)時,它將被重定向到https://www.alio.com/images/image.jpg。我想通過我的nginx.conf爲什麼會這樣做:Cloudfront Nginx重寫導致問題
server {
root /var/www/html/alio/public;
index index.php;
server_tokens off;
server_name www.alio.com;
location/{
if ($http_x_forwarded_proto != 'https') {
rewrite^https://$host$request_uri? permanent;
}
try_files $uri $uri/ /index.php?$query_string;
}
location ~ \.php$ {
try_files $uri /index.php =404;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass unix:/var/run/php-fpm/php-fpm.sock;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
}
}
重寫^ https:// $ host $ request_uri?常駐;更改網址(當我刪除重寫我得到的CDN網址)。我有這個重寫,以確保對我的網站的所有請求都是https。如果有辦法做,而不是重寫301重定向,或者如果我檢測到它是雲前臺撥打ELB的電話,那麼不要重寫?
感謝,這個工作 – gprime