背景

通过k8s访问http://192.168.1.2:32156/devops/index.html需跳转到http://192.168.1.2:32156/jenkins/

配置文件

location = /devops/index.html {				
	rewrite ^ $scheme://$http_host/jenkins/ permanent;		
}
location = /jenkins/ {
    root /usr/share/nginx/html;
    index /jenkins/index.html;
}

相关解释

location = /devops/index.html		#精准匹配/devops/index.html
$scheme				#存放了客户端请求使用的协议,如http
$http_host			#存放客户端请求的地址+端口,如192.168.1.2:32156

参考文章:

http://www.cocoachina.com/articles/39379
Nginx中的Rewrite的重定向配置与实践

Logo

K8S/Kubernetes社区为您提供最前沿的新闻资讯和知识内容

更多推荐