mirror of
https://github.com/openziti/zrok.git
synced 2024-11-07 00:34:17 +01:00
skip interstitial for HTTP 'OPTIONS' method (#777)
This commit is contained in:
parent
9126c1769e
commit
893a03c8fa
@ -158,7 +158,7 @@ func shareHandler(handler http.Handler, pcfg *Config, key []byte, ctx ziti.Conte
|
||||
if shrToken != "" {
|
||||
if svc, found := endpoints.GetRefreshedService(shrToken, ctx); found {
|
||||
if cfg, found := svc.Config[sdk.ZrokProxyConfig]; found {
|
||||
if pcfg.Interstitial != nil && pcfg.Interstitial.Enabled {
|
||||
if r.Method != http.MethodOptions && (pcfg.Interstitial != nil && pcfg.Interstitial.Enabled) {
|
||||
sendInterstitial := true
|
||||
if len(pcfg.Interstitial.UserAgentPrefixes) > 0 {
|
||||
ua := r.Header.Get("User-Agent")
|
||||
|
Loading…
Reference in New Issue
Block a user