Open
Description
I currently have the following setup
- gitea 1.16.5
- mysql 8.0.28
- apache 2.4.38
- gitea ssl is disabled
- apache does forward http to https
- apache is configured to reverse proxy to gitea
- Google Chrome shows that all requests are done via h2
When I navigate the files of any of my repository and do "fast directory browsing" (e.g. folder A -> folder B -> up to folder A -> folder B). Something is getting hiccups and I get requests which take about 10 seconds before the folder content is displayed. Those 10 seconds are pretty constant and can be seen in the apaches logs as follow:
2022/03/29 13:56:24 Completed GET /user/events 200 OK in 10.003202925s
I spend hours trying to track this down to what the problem is, and finally I found that adding Protocols http/1.1
to the VirtualDirectory of my apache configuration seems to fix this problem. Pretty fast browsing with low requests roundtrips.
Is this problem known? What logs can I provide else?