How can I disable HTTPS for WSO2 Api Manager (admin/gw/other components)? We want to SSL-terminate on our front load-balancers - and not on the end WSO2-products. If I visit port 9763 I'll get redirected to 9443. We're running 2.1.0 deployed with the docker-images.
相关问题
- How to fix error “Enrollment failed” when trying W
- oAuth2 - WSO2 API Manager and Identity Server Inte
- wso2 esb file processing example smooks csv parser
- I am unable to get the list of services with in th
- wso2 identity server - disabling user sign up
相关文章
- WSO2 - disable HTTPS
- wso2 governance registry - client looks up service
- Deploying WSO2 ESB 4.6.0 onto JBoss 7
- WSO2 API Manager Gateway clustering. How to setup
- WSO2 Business Process bpel, error in gui with “if”
- issue running mvn eclipse:eclipse on platform tag
- WSO2 Aggregate Mediator premature/incomplete/unkno
- WSO2 ESB - writing files out of base64
You have to do the following,
Go to the $WSO2_HOME/repository/conf and open carbon.xml, and uncomment
Disable secure cookie parameter in $WSO2_HOME/repository/conf/tomcat/carbon/WEB-INF/web.xml file as well.
Assuming the system configuration of David doesn't introduce security issues following should work. (If the load balancers and WSO2 products are in the same private network or VPC there should be no additional security problems)
Note: Following approaches were tested with single tenant (super tenant) scenario only.
Replace the content in repository/deployment/server/jaggeryapps/store/site/themes/wso2/templates/user/login/redirector.jag with following.
Replace the getHttpsUrl function definition in repository/deployment/server/jaggeryapps/store/jagg/jagg.jag
repository/deployment/server/jaggeryapps/publisher/site/themes/wso2/templates/user/login/template.jag
replace the part
with
Note: The security totally depends on the system architecture. Additionally, the above configurations are independent. If you need to let https access to all components then do all. For particular one, the respective configuration alone should work.
Hope it helps.