Bookwyrm Versions Save

Social reading and reviewing, decentralized with ActivityPub

v0.7.3

1 month ago

What's Changed

New Contributors

Full Changelog: https://github.com/bookwyrm-social/bookwyrm/compare/v0.7.2...v0.7.3

v0.7.2

3 months ago

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:

  1. 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)/ { to location ~ \.(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;
    }
  1. 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

New Contributors

Full Changelog: https://github.com/bookwyrm-social/bookwyrm/compare/v0.7.1...v0.7.2

v0.7.1

4 months ago

What's Changed

New Contributors

Full Changelog: https://github.com/bookwyrm-social/bookwyrm/compare/v0.6.6...v0.7.1

v0.6.6

7 months ago

What's Changed

New Contributors

Full Changelog: https://github.com/bookwyrm-social/bookwyrm/compare/v0.6.5...v0.6.6

v0.6.5

8 months ago

What's Changed

New Contributors

Full Changelog: https://github.com/bookwyrm-social/bookwyrm/compare/v0.6.4...v0.6.5

v0.6.4

9 months ago

What's Changed

New Contributors

Full Changelog: https://github.com/bookwyrm-social/bookwyrm/compare/v0.6.3...v0.6.4

v0.6.3

11 months ago

What's Changed

Full Changelog: https://github.com/bookwyrm-social/bookwyrm/compare/v0.6.2...v0.6.3

v0.6.2

1 year ago

What's Changed

New Contributors

Full Changelog: https://github.com/bookwyrm-social/bookwyrm/compare/v0.6.1...v0.6.2

v0.6.1

1 year ago

What's Changed

New Contributors

Full Changelog: https://github.com/bookwyrm-social/bookwyrm/compare/v0.6.0...v0.6.1

v0.6.0

1 year ago

What's Changed

New Contributors

Full Changelog: https://github.com/bookwyrm-social/bookwyrm/compare/v0.5.5...v0.6.0