From a34989fe481cdadf664a8f9bf36b48a258064349 Mon Sep 17 00:00:00 2001 From: kolaente Date: Sat, 10 Feb 2024 16:19:58 +0100 Subject: [PATCH] fix: typos --- content/post/release-0.23.0.md | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/content/post/release-0.23.0.md b/content/post/release-0.23.0.md index 52f4b78..5ae4a6a 100644 --- a/content/post/release-0.23.0.md +++ b/content/post/release-0.23.0.md @@ -6,13 +6,13 @@ draft: false
If Vikunja is useful to you, please consider buying me a coffee, -sponsoring me on github or buying a sticker pack.
+sponsoring me on GitHub or buying a sticker pack.
I'm also offering a hosted version of Vikunja if you want a hassle-free solution for yourself or your team.
I'm happy to announce Vikunja 0.23.0! -This release contains 63 changes with one substantial change and a few bug fixes. +This release contains 63 changes, with one substantial change and a few bug fixes. ## New to Vikunja? @@ -30,18 +30,18 @@ This made sense from an architectural point of view, but also meant that you had With this release, the two repositories (and the desktop package as well) are merged into one. This enables us to create a single binary release artifact, simplifying the deployment and hosting of Vikunja a lot. -In a nutshell, the api now contains the frontend files as well. +In a nutshell, the API now contains the frontend files as well. ### How to upgrade -To upgrade, you need to remove the frontend deployment and update the api binary. +To upgrade, you need to remove the frontend deployment and update the API binary. Let's dive into what that means exactly. #### Manual deployment If you've previously deployed the API by downloading a binary release, follow these steps to upgrade to the new version: -1. Replace the api binary with the new `vikunja` binary. +1. Replace the API binary with the new `vikunja` binary. 2. Remove the web server configuration used to host the frontend files. 3. Remove the frontend files from your host. 4. Update your reverse proxy config (if any) to send all traffic to the vikunja service (previously API). @@ -57,7 +57,7 @@ If you've previously deployed Vikunja via docker, follow these steps to upgrade 1. Replace the `vikunja/api` docker image with `vikunja/vikunja`. 2. Remove the frontend docker container, migrating any config from it (see below). -3. Update your reverse proxy config (if any) to send all traffic to the new `vikunja/vikunja` container instead of splitting it between frontend and api. +3. Update your reverse proxy config (if any) to send all traffic to the new `vikunja/vikunja` container instead of splitting it between frontend and API. 4. If you previously had a `proxy` nginx container in your setup, you can remove that as well. 5. Set the new public URL config (see below). @@ -70,10 +70,10 @@ See below for configuration values you might need to adjust. Some configuration options for the API and frontend have changed with this release: * All configuration is now done via the config file or environment variables. No split between API and frontend options. -* The staticpath option has been removed, since the frontend is now bundled with the API. +* The `staticpath` option has been removed, since the frontend is now bundled with the API. * Configuration for Sentry has been changed. [Check out the config docs](https://vikunja.io/docs/config-options/#sentry) for more information. * A new option [`publicurl`](https://vikunja.io/docs/config-options/#publicurl) has been introduced. This option replaces the old `frontendurl` option and is also the default API URL for the frontend. -* CORS is now disabled by default. If you relied on the previously, you need to [enable it again](https://vikunja.io/docs/config-options/#cors). This includes if you want to use your Vikunja instance with the desktop client. +* CORS is now disabled by default. If you relied on it previously, you need to [enable it again](https://vikunja.io/docs/config-options/#cors). This includes if you want to use your Vikunja instance with the desktop client. * Infinite nesting of tasks is now always enabled, the old frontend config option was removed. * The frontend options to allow icon changes or set a custom logo have been moved to the general config. [Check out the docs](https://vikunja.io/docs/config-options/#allowiconchanges) if you were using them before.