1
0
mirror of https://github.com/spacebarchat/docs.git synced 2024-11-08 19:32:30 +01:00

Trailing slash in nginx imagor config is required

This commit is contained in:
Madeline 2023-01-16 13:57:21 +11:00
parent c42c4b455c
commit 0f65bd9c24
No known key found for this signature in database
GPG Key ID: 1958E017C36F2E47

View File

@ -34,9 +34,9 @@ and the `-p` value used in docker.
If you're using a [reverse proxy](../reverseProxy.md) such as Nginx for Fosscord already, you could add this to your config's `server` block
```nginx
location /media {
location /media/ {
# If you changed the port, be sure to change it here too
proxy_pass http://127.0.0.1:8000;
proxy_pass http://127.0.0.1:8000/;
}
```