diff options
author | rstular <rok@stular.eu> | 2021-11-17 03:53:15 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-16 21:53:15 -0500 |
commit | 8fdc5247de76e16899755c64a6d07d856a9d8a92 (patch) | |
tree | 12ab51cf5edb4031149e97e62fea86b5665b9009 /docs | |
parent | 171f2d066e70cb6875ff5c552784c5486765cd11 (diff) | |
download | gitea-8fdc5247de76e16899755c64a6d07d856a9d8a92.tar.gz gitea-8fdc5247de76e16899755c64a6d07d856a9d8a92.zip |
Update for reverse proxying static resources (#17670)
Gitea fetches static resources from /assets, so nginx configuration has to be updated accordingly.
Co-authored-by: zeripath <art27@cantab.net>
Co-authored-by: wxiaoguang <wxiaoguang@gmail.com>
Diffstat (limited to 'docs')
-rw-r--r-- | docs/content/doc/usage/reverse-proxies.en-us.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/content/doc/usage/reverse-proxies.en-us.md b/docs/content/doc/usage/reverse-proxies.en-us.md index 72998609d9..a22dba2bc4 100644 --- a/docs/content/doc/usage/reverse-proxies.en-us.md +++ b/docs/content/doc/usage/reverse-proxies.en-us.md @@ -80,7 +80,7 @@ server { listen 80; server_name git.example.com; - location /_/static { + location /_/static/assets { alias /path/to/gitea/public; } |