[x]):I'm hosting gitea in a subfolder called /gitea/ via Apache (Reverse)Proxy.
Therefore my api base url is /gitea/api/v1. Now on searching issues with the provided input it queries /api/v1/repos/gitea/<user>/<repo>/issues?q=... - which of course 404s.
It should be /gitea/api/v1/repos/<user>/<repo>/issues?q=... instead.
@kolaente made this feature possible AFAIK
Yeah, maybe I forgot to pay attention to the base path, I'll look into this tomorrow.
Simple workaround while this isn't resolved
In apache config:
Redirect /api/v1/repos/gitea/ /gitea/api/v1/repos/
PR is up: #5247
Most helpful comment
Yeah, maybe I forgot to pay attention to the base path, I'll look into this tomorrow.