Use wildcard in SESSION_ENDPOINTS

Using tyk-community version here (Tyk-Gateway)

I would like to specify wildcard in the SESSION_ENDPOINTS, how do I do that? Tyk gateway seems to be looking for the exact match here.

The SESSION_ENDPOINTS are not API endpoints, they are three HTML pages.

Basically I would like to replace

"config_data": {
    "SESSION_ENDPOINTS": [
        "/companies/apple",
        "/companies/google",
        "/companies/microsoft"
    ],
    "TYK_SERVER": "http://tykhost/"
}

with

"config_data": {
    "SESSION_ENDPOINTS": [
        "/companies/*"
    ],
    "TYK_SERVER": "http://tykhost/"
}

i dont think tyk-gateway is picking up the wildcard here.