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: 
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
Post a Comment