1
0
mirror of https://github.com/astaxie/beego.git synced 2024-06-26 00:54:14 +00:00

Merge pull request #2050 from simpleton/bug/original_scheme

fix(context): retrieve scheme from X-Forwarded-Proto when it isn't none
This commit is contained in:
astaxie 2016-07-19 11:13:14 +08:00 committed by GitHub
commit d11823548b

View File

@ -89,6 +89,9 @@ func (input *BeegoInput) Site() string {
// Scheme returns request scheme as "http" or "https".
func (input *BeegoInput) Scheme() string {
if scheme := input.Header("X-Forwarded-Proto"); scheme != "" {
return scheme
}
if input.Context.Request.URL.Scheme != "" {
return input.Context.Request.URL.Scheme
}