As discussed in Tokio's Discord server, it would be useful to add support for wildcard matching in the middle of the path
For instance, this is required to implement Docker Registry API V2
Some examples are provided below:
/v2/<name>/
/v2/<name>/blobs/<digest>
/v2/<name>/manifests/<reference>
Note: <name> can contain any number of segments (at least 2), but is limited to 256 characters in length (including slashes)
Also, it can be useful for various git clients (something like /:repo/*filepath/action)
As discussed in Tokio's Discord server, it would be useful to add support for wildcard matching in the middle of the path
For instance, this is required to implement Docker Registry API V2
Some examples are provided below:
/v2/<name>//v2/<name>/blobs/<digest>/v2/<name>/manifests/<reference>Note: <name> can contain any number of segments (at least 2), but is limited to 256 characters in length (including slashes)
Also, it can be useful for various git clients (something like
/:repo/*filepath/action)