We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9ea2299 commit e8ccedbCopy full SHA for e8ccedb
service/proxy.go
@@ -152,6 +152,16 @@ func handleRequest(w http.ResponseWriter, r *http.Request) {
152
return
153
}
154
155
+ if strings.HasPrefix(r.RequestURI, "/MP_verify_") {
156
+ challengeMap := site.GetChallengeMap()
157
+ for path, value := range challengeMap {
158
+ if r.RequestURI == fmt.Sprintf("/%s", path) {
159
+ responseOk(w, value)
160
+ return
161
+ }
162
163
164
+
165
if site.SslMode == "HTTPS Only" {
166
// This domain only supports https but receive http request, redirect to https
167
if r.TLS == nil {
0 commit comments