diff --git a/.gitignore b/.gitignore
index 9cce52ad1d30c52abeef5e51ffa87d6cd95256a8..0dcd7c4edc77dd214a3d83f436b68597b7e6ab48 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,7 +1,7 @@
 # mkdocs documentation
 site/
 docs/tech/architecture/definitions.md
-docs/tech/CHANGELOG.md
+docs/tech/architecture/CHANGELOG.md
 docs/tech/installation/back-README.md
 docs/tech/installation/front-README.md
 docs/tech/api/openapi.yml
diff --git a/docs/tech/installation/overview.md b/docs/tech/installation/overview.md
index c864d22f6c3940a277ae5e2e4eae61fa10d7cb1f..3f47e2d2248812a3b6c8e675475446b0c9e0a70f 100644
--- a/docs/tech/installation/overview.md
+++ b/docs/tech/installation/overview.md
@@ -7,4 +7,4 @@ The frontend of the INJECT project is responsible for providing a user-friendly
 
 The backend of the INJECT project handles data management, authentication, and running the INJECT project. To begin setting up the backend environment and running the backend server, follow the instructions outlined in the [Backend Installation Guide](back-README.md). This guide provides detailed steps for installing dependencies, configuring the backend, and deploying the backend server.
 
-By following the installation guides for both the frontend and backend components, you'll be able to successfully set up and run the INJECT project. If you encounter any issues or need further assistance, please check out our [FAQ](TBA). Additionally, if you encounter any bugs or require further assistance, don't hesitate to report them to us. The [FAQ](TBA) includes instructions on how to report bugs.
+By following the installation guides for both the frontend and backend components, you'll be able to successfully set up and run the INJECT project. If you encounter any issues or need further assistance, please check out our [FAQ](../../faq.md). Additionally, if you encounter any bugs or require further assistance, don't hesitate to report them to us. The [FAQ](../../faq.md) includes instructions on how to report bugs.
diff --git a/mkdocs.yml b/mkdocs.yml
index a85007158ceefa9b8ef07c89398d798ed1e0e473..ef5e7310f16ca2647009fa13d7bebdcda9520fb5 100644
--- a/mkdocs.yml
+++ b/mkdocs.yml
@@ -31,7 +31,7 @@ nav:
       - Overview: tech/api/overview.md
       - Graphql Documentation: tech/api/graphql-docs.md
       - Swagger REST documentation: tech/api/swagger-docs.md
-    - Changelog on backend: tech/CHANGELOG.md
+    - Changelog on backend: tech/architecture/CHANGELOG.md
   - FAQ: faq.md
   - Glossary of Terms: glosary-of-terms.md
   - Authors: authors.md
diff --git a/utilities.sh b/utilities.sh
index 0e4be91d46168aeca4fa360e82b9beea2a9364cf..7f6720e0d0d1710a1df3b6f3ec290532d40b0a60 100755
--- a/utilities.sh
+++ b/utilities.sh
@@ -4,7 +4,7 @@ git submodule update --remote
 
 mkdir -p docs/tech
 cp ./backend/definitions/README.md ./docs/tech/architecture/definitions.md
-cp ./backend/CHANGELOG.md ./docs/tech/CHANGELOG.md
+cp ./backend/CHANGELOG.md ./docs/tech/architecture/CHANGELOG.md
 cp ./backend/INSTALATION.md ./docs/tech/installation/back-README.md
 cp ./frontend/README.md ./docs/tech/installation/front-README.md
 cp ./backend/openapi.yml ./docs/tech/api/openapi.yml