Je veux avoir mon API contrôleur de l'utilisation de SSL, j'ai donc ajouté une autre directive listen mon nginx.conf
upstream unicorn {
server unix:/tmp/unicorn.foo.sock fail_timeout=0;
}
server {
listen 80 default deferred;
listen 443 ssl default;
ssl_certificate /etc/ssl/certs/foo.crt;
ssl_certificate_key /etc/ssl/private/foo.key;
server_name foo;
root /var/apps/foo/current/public;
try_files $uri/system/maintenance.html $uri/index.html $uri @unicorn;
location @unicorn {
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
proxy_redirect off;
proxy_pass http://unicorn;
}
error_page 502 503 /maintenance.html;
error_page 500 504 /500.html;
keepalive_timeout 5;
}
qui passe la nginx conftest sans aucun problème. J'ai également ajouté un force_ssl
directive à mon ApiController
class ApiController < ApplicationController
force_ssl if Rails.env.production?
def auth
user = User.authenticate(params[:username], params[:password])
respond_to do |format|
format.json do
if user
user.generate_api_key! unless user.api_key.present?
render json: { key: user.api_key }
else
render json: { error: 401 }, status: 401
end
end
end
end
def check
user = User.find_by_api_key(params[:api_key])
respond_to do |format|
format.json do
if user
render json: { status: 'ok' }
else
render json: { status: 'failure' }, status: 401
end
end
end
end
end
qui a très bien fonctionné quand je n'étais pas à l'aide de SSL, mais maintenant, quand j'essaie d' curl --LI http://foo/api/auth.json
, j'ai bien redirigé vers https
, mais puis-je continuer à obtenir redirigé vers http://foo/api/auth
se terminant en une infinité de boucle de redirection.
Mes itinéraires tout simplement
get "api/auth"
get "api/check"
Je suis à l'aide de Rails 3.2.1 sur Ruby 1.9.2 avec nginx 0.7.65