Nginx:根据域名转发请求


server {
    listen       80;
    server_name *.youdomain.com;
    if ($http_host ~* "^(.*?)\.youdomain\.com$") {
           set $domain $1;
    }
     location / {
        if ($domain ~* "jenkins") {  #域名中有jenkins,转发到8080端口
            proxy_pass http://0.0.0.0:8080;      
        }
        # 默认情况
        root   /var/www/html;
        index  index.html index.htm;
     }
}


免责声明!

本站转载的文章为个人学习借鉴使用,本站对版权不负任何法律责任。如果侵犯了您的隐私权益,请联系本站邮箱yoyou2525@163.com删除。



 
粤ICP备18138465号  © 2018-2025 CODEPRJ.COM