https redirect for rails app behind proxy?

后端 未结 2 510
野的像风
野的像风 2020-12-15 05:59

server declaration in my nginx.conf:

    listen       1.2.3.4:443 ssl;
    root /var/www/myapp/current/public;
    ssl on;
    ssl_certificate /etc/nginx-cer         


        
2条回答
  •  被撕碎了的回忆
    2020-12-15 06:26

    You can pass :protocol => "https", to redirect_to.

    You can set this as a default by adding the following to application.rb

    Rails.application.routes.default_url_options[:protocol]= 'https'
    

    Reference: https://stackoverflow.com/a/6101147/446203

提交回复
热议问题