Example 1: Accept any localhost url
- localMatch {}
Example 2: Accept any localhost url (port == -1 accepts any port)
- localMatch port : -1
Example 3: Accept any localhost url on port 80 only
- localMatch port : 80
Example 4: Accept localhost urls with paths that start with /print/.
If the regular expression give does not start with / then it will be added because all paths start with /
- localMatch pathRegex : /print/.+
|
|