简体   繁体   中英

How to change OpenShift Jenkins to use HTTP instead of HTTPs

I create an application Jenkins on Openshift, but when I tried to visit http://[app_name]-[domain_name].rhcloud.com/ , it will be redirected to https://[app_name]-[domain_name].rhcloud.com/ .

I curl the http address, the result is :

<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<html><head>
<title>302 Found</title>
</head><body>
<h1>Found</h1>
<p>The document has moved <a href="https://[app_name]-[domain_name].rhcloud.com/">here</a>.</p>
<hr>
<address>Apache/2.2.15 (Red Hat) Server at [app_name]-[domain_name].rhcloud.com Port 80</address>
</body></html>

If I do not want to be redirected to https, what should I do? I searched in my openshift folders, but cannot find any helpful things

您应该在.htaccess文件中更改它。

RewriteRule ^https://[app_name]-[domain_name].rhcloud.com/(.*)  http://[app_name]-[domain_name].rhcloud.com/$1 [R=301,NC]

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM