We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
It would be awesome if we could use regexp instead of simple string matching on hostgroups here: https://github.com/smrtr/HaltoRouter/blob/master/src/Smrtr/HaltoRouter.php#L286
We could use an @ symbol at the beginning of the string to denote a regular expression.
@
This would allow us to define hostgroups like so:
Group[] = "area.mysite.domain"
Group[] = "@/area\.mysite\.([a-zA-Z0-9]+)\.domain/"
The text was updated successfully, but these errors were encountered:
joegreen88
No branches or pull requests
It would be awesome if we could use regexp instead of simple string matching on hostgroups here: https://github.com/smrtr/HaltoRouter/blob/master/src/Smrtr/HaltoRouter.php#L286
We could use an
@
symbol at the beginning of the string to denote a regular expression.This would allow us to define hostgroups like so:
Group[] = "area.mysite.domain"
checked normallyGroup[] = "@/area\.mysite\.([a-zA-Z0-9]+)\.domain/"
checked as a regular expressionThe text was updated successfully, but these errors were encountered: