1. 02 Nov, 2023 29 commits
  2. 01 Nov, 2023 1 commit
  3. 31 Oct, 2023 5 commits
  4. 30 Oct, 2023 2 commits
  5. 27 Oct, 2023 2 commits
  6. 26 Oct, 2023 1 commit
    • Łukasz Nowak's avatar
      rapid-cdn: Avoid needless trailing slash sent to backend · 45c2762d
      Łukasz Nowak authored
      Cover a case of not adding needless trailing / while accessing a backend from
      top level of the URL.
      
      As / are stripped while parsing the url, expose the situation that even if
      url ends with a /, it won't be sent for top level access.
      
      Here is the mapping of configured URL, path accessed on the CDN side and path
      sent to the backend:
      
       * backend/index.html   frontend/     index.html
       * backend/index.html   frontend/a    index.html/a
       * backend/index.html   frontend/a/   index.html/a/
       * backend/index.html/  frontend/     index.html
       * backend/index.html/  frontend/a    index.html/a
       * backend/index.html/  frontend/a/   index.html/a/
      45c2762d