loading up the forgejo repo on tangled to test page performance
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Add docs section for sub-paths with the container registry (#27505)

Fixes #21092

suggested by
https://github.com/go-gitea/gitea/issues/21092#issuecomment-1749965397

---------

Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>

authored by

KN4CK3R
wxiaoguang
and committed by
GitHub
e94a4ad2 ae2794c9

+6
+6
docs/content/administration/reverse-proxies.en-us.md
··· 381 381 1. Set `[server] ROOT_URL = http://example.com/gitea/` in your `app.ini` file. 382 382 2. Make the reverse-proxy pass `http://example.com/gitea/foo` to `http://gitea-server:3000/foo`. 383 383 3. Make sure the reverse-proxy not decode the URI, the request `http://example.com/gitea/a%2Fb` should be passed as `http://gitea-server:3000/a%2Fb`. 384 + 385 + ## Docker / Container Registry 386 + 387 + The container registry uses a fixed sub-path `/v2` which can't be changed. 388 + Even if you deploy Gitea with a different sub-path, `/v2` will be used by the `docker` client. 389 + Therefore you may need to add an additional route to your reverse proxy configuration.