Rails Web サイトですべての Web ページとアセットを http または https の両方で提供しようとしましたが、https モードに入ると http にリダイレクトされ、アセットが https プロトコルとして提供されることはありません。 .
私のnginx構成は次のとおりです。
server {
listen <%= rubber_env.unicorn_listen_port %>;
listen 443 ssl;
ssl_certificate /etc/ssl/certs/server.crt;
ssl_certificate_key /etc/ssl/private/server.key;
ssl_session_cache shared:SSL:10m;
client_max_body_size 4G;
server_name <%= [ rubber_env.domain, rubber_env.web_aliases ].flatten.compact.join(" ") %>;
keepalive_timeout 5;
# Location of our static files
root <%= Rubber.root + "/public" %>;
location / {
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
proxy_redirect off;
# If you don't find the filename in the static files
# Then request it from the unicorn server
if (!-f $request_filename) {
proxy_pass http://unicorn_server;
break;
}
}
location ~ ^/(assets)/ {
expires 1y;
add_header Cache-Control public;
add_header ETag "";
break;
gzip_static on; # to serve pre-gzipped version
}
# this rewrites all the requests to the maintenance.html
# page if it exists in the doc root. This is for capistrano's
# disable web task
if (-f $document_root/system/maintenance.html)
{
rewrite ^(.*)$ /system/maintenance.html last;
break;
}
error_page 500 502 503 504 /500.html;
location = /500.html
{
root <%= Rubber.root + "/public" %>;
}
error_page 404 /404.html;
location = /404.html
{
root <%= Rubber.root + "/public" %>;
}
}
https または http で nginx を使用して静的アセットを提供できればよいのですが、それが不可能な場合は、作成中のブックマークレットでのみ使用されるため、Rails で提供してパフォーマンスのペナルティを支払うことができます。 .
このnginx構成をアセットを提供するsslで動作させる方法を知っていますか?
必要に応じて、ユニコーンとハプロキシの構成も追加できます。
ありがとうございました!