Hi All,

I have configured apache httpd server as a reverse proxy for WSO2 IS 5.5.0 and I am able to view successfully redirect to login page, but I am not able to login to console. Every time I sign in it is redirected to login page again. Please suggest a solution.

Below is my complete configuration.

<VirtualHost *:80>
  ServerAdmin [email protected]
  DocumentRoot /var/www/
  ErrorLog ${APACHE_LOG_DIR}/error.log
  CustomLog ${APACHE_LOG_DIR}/access.log combined
  ProxyRequests Off
  ProxyPreserveHost On
  ProxyPassReverseCookiePath /carbon/ /

  OIDCOAuthSSLValidateServer Off
  OIDCOAuthIntrospectionEndpoint ${WSO2_BASE_URL}/oauth2/introspect
  OIDCOAuthClientID admin
  OIDCOAuthClientSecret ${ADMIN_PASS}
  OIDCOAuthIntrospectionTokenParamName token
  OIDCOAuthRemoteUserClaim username
  OIDCAuthNHeader Authorization
  OIDCOAuthIntrospectionEndpointMethod POST

  SSLProxyEngine on
  SSLProxyVerify off

  <Location / >
    AuthType oauth20
    Require claim active:true
  </Location>

<Location /carbon>
    AuthType None
    Satisfy Any
    ProxyPass  https://wso2is-authz:9443/carbon
    ProxyPassReverse https://wso2is-authz:9443/carbon
    Header edit Location ^https: http:
  </Location>
</VirtualHost>


Thanks,

Shiva

_______________________________________________
Dev mailing list
[email protected]
http://wso2.org/cgi-bin/mailman/listinfo/dev

Reply via email to