nginx位置正则表达式

时间:2015-01-29 16:32:20

标签: regex nginx

有人可以帮我提供位置正则表达式。 我有这样的网址:https://host.com:444/aaaa-bbb-63810-host1.my-network.com 我需要提取值:63810和1(host1的一部分)

我正在尝试的是:

    location ~* ^/aaaa-bbb-(?<port>\d+)-host(?<host_id>\d+)/ {
        proxy_pass              http://machine$host_id.my-stg.com:$port;
    }

但这不会起作用。我错过了什么?

0 个答案:

没有答案