asp.net mvc - How to set OpenID url parameter in OWIN -


i have basic setup:

http request -> hardware openwrt router -> apache -> iis. between apache , iis there's simple mod_proxy config like:

<virtualhost *:80>     serveradmin me@mail.com     servername steam.domain.com      proxypass / http://192.168.1.9/ timeout=600 keepalive=on     proxypassreverse / http://192.168.1.9/ </virtualhost *:80> 

the application hosted on 192.168.1.9 iis works flawlessly except 1 thing - when i've followed guide website i'm having steam openid return url set 192.168.1.9 instead of steam.domain.com. host in openid query string, suppose can changed somehow?

edit: issue when click steam button on login view end steamcommunity login screen sign in through steam @ 192.168.1.69 instead of sign in through steam @ steam.domain.com per picture: issue

the return url build on request launched when user click on link authenticate himself via steam:

private string buildreturnto(string state) {     return request.scheme + "://" + request.host +         requestpathbase + options.callbackpath +         "?state=" + uri.escapedatastring(state); } 

in openidauthenticationhandler.cs.

so think problem in dev (i assume website still in dev cause of ip address 192.168, know nothing hardware openwrt router , mod_proxy).


Comments

Popular posts from this blog

javascript - jquery or ashx not working -

opencv - DataType<cv::detail::deriv_type>::depth what is it used for -

python 3.x - Mapping specific letters onto a list of words -