You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
By default, certain types of requests are blocked, but you might want to allow these through. For example, all requests for files starting with . are blocked, but /.well-known is part of several important protocols that you might want to handle.
These can be handled by adding a rule, but must be added using the regex-style match for specificity which could catch people out and can be hard to debug if you don't have the source.
By default, certain types of requests are blocked, but you might want to allow these through. For example, all requests for files starting with
.
are blocked, but/.well-known
is part of several important protocols that you might want to handle.These can be handled by adding a rule, but must be added using the regex-style match for specificity which could catch people out and can be hard to debug if you don't have the source.
eg (the
~
marks this as regex-style):The text was updated successfully, but these errors were encountered: