Arya Khochare

Results 159 comments of Arya Khochare

Hello @agnivade Just want to ask regarding configuring the subpath. It takes from config siteurl right and We can do it with mmctl too while also specifying the path of...

I was able to reproduce this issue in my local using nginx, It goes in infinite redirects. I will check whats going on / trace the request and will let...

I have found the line of code causing this issue after tracing the request through all files and code. In web/static.go line 55. w.MainRouter.HandleFunc("", http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) { r.URL.Path...

After removing this code and curl the subpath i get Method not allowed as the HEAD request will not be handled. @agnivade

In this logic, when a request comes to /subpath, the r.URL.Path contains /subpath. The line r.URL.Path += "/" appends a / to the path, making it /subpath/. However, if this...

Hello @mattermod I would like to work on this issue.