Important
You will need to update your nginx config! You need to make two changes to the default.conf file so that they reflect the current state of production.conf
:
- Change the location block on line 99 (this may vary if you have made any edits to your copy of the file) from
location ~ ^/(images|static)/ {
tolocation ~ \.(bmp|ico|jpg|jpeg|png|tif|tiff|webp|css|js)$ {
. The whole block should now look like this:
location ~ \.(bmp|ico|jpg|jpeg|png|tif|tiff|webp|css|js)$ {
root /app;
try_files $uri =404;
add_header X-Cache-Status STATIC;
access_log off;
}
- Add a new block below (by default this will be on line 106):
# block access to any non-image files from images or static
location ~ ^/images/ {
return 403;
}
It's a good idea to check that your config syntax is valid before restarting nginx. With docker, you can run: docker-compose run --rm nginx nginx -t
. Please reach out in the developer chat if you have any questions ❤️
What's Changed
- Let a user search books within their shelves by @rosschapman in #3118
- Export ReadThrough in the csv export by @ccamara in #3189
- Disable user exports by @hughrun in #3226
- Pass correct user id in Move notification by @hughrun in #3224
New Contributors
- @rosschapman made their first contribution in #3118
- @ccamara made their first contribution in #3189
Full Changelog: v0.7.1...v0.7.2