提交 f7b0f4f1 编写于 作者: M Manuel Meurer

Update documentation for setting asset_host to a Proc, mention that the...

Update documentation for setting asset_host to a Proc, mention that the request parameter might not be supplied [ci skip]
上级 3051356a
......@@ -88,9 +88,12 @@ module Helpers
# still sending assets for plain HTTP requests from asset hosts. If you don't
# have SSL certificates for each of the asset hosts this technique allows you
# to avoid warnings in the client about mixed media.
# Note that the request parameter might not be supplied, e.g. when the assets
# are precompiled via a Rake task. Make sure to use a Proc instead of a lambda,
# since a Proc allows missing parameters and sets them to nil.
#
# config.action_controller.asset_host = Proc.new { |source, request|
# if request.ssl?
# if request && request.ssl?
# "#{request.protocol}#{request.host_with_port}"
# else
# "#{request.protocol}assets.example.com"
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册