From 54d837df1f559531d61abebb4f5bafa9cf82e86f Mon Sep 17 00:00:00 2001 From: arhimede Date: Wed, 30 Oct 2024 12:52:41 +0200 Subject: [PATCH 1/3] Update MariaDB.repo.j2 --- wsl/os/almalinux9/roles/mariadb/templates/MariaDB.repo.j2 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wsl/os/almalinux9/roles/mariadb/templates/MariaDB.repo.j2 b/wsl/os/almalinux9/roles/mariadb/templates/MariaDB.repo.j2 index fea3b58..5fca53a 100644 --- a/wsl/os/almalinux9/roles/mariadb/templates/MariaDB.repo.j2 +++ b/wsl/os/almalinux9/roles/mariadb/templates/MariaDB.repo.j2 @@ -1,8 +1,8 @@ -# MariaDB 10.11 RedHat repository list +# MariaDB 11.4 RedHat repository list # https://mariadb.org/download/ [mariadb] name = MariaDB -baseurl = https://ftp.bme.hu/pub/mirrors/mariadb/yum/10.11/rhel9-amd64 +baseurl = https://ftp.bme.hu/pub/mirrors/mariadb/yum/11.4/rhel9-amd64 gpgkey=https://ftp.bme.hu/pub/mirrors/mariadb/yum/RPM-GPG-KEY-MariaDB enabled=1 gpgcheck=0 From 1d31062854806d8295bf4c4951d4066026363abb Mon Sep 17 00:00:00 2001 From: arhimede Date: Wed, 30 Oct 2024 12:54:06 +0200 Subject: [PATCH 2/3] Update main.yml --- wsl/os/almalinux9/roles/mariadb/tasks/main.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wsl/os/almalinux9/roles/mariadb/tasks/main.yml b/wsl/os/almalinux9/roles/mariadb/tasks/main.yml index 3ef7dac..418cada 100644 --- a/wsl/os/almalinux9/roles/mariadb/tasks/main.yml +++ b/wsl/os/almalinux9/roles/mariadb/tasks/main.yml @@ -1,11 +1,11 @@ --- -- name: Create MariaDB 10.11 repo file +- name: Create MariaDB 11.4 repo file template: src: "{{ mariadb_repo_src }}" dest: "{{ mariadb_repo_dest }}" owner: "{{ config.system.username }}" group: "{{ config.system.username }}" -- name: Install MariaDB 10.11 +- name: Install MariaDB 11.4 command: "dnf install python3-mysqlclient MariaDB-server MariaDB-client -y" - name: Enable and start MariaDB service command: systemctl enable --now mariadb From 3a4e67a2e49cca20e7361429219fd8b4f3f8f65a Mon Sep 17 00:00:00 2001 From: Alex Karajos Date: Wed, 30 Oct 2024 13:15:04 +0200 Subject: [PATCH 3/3] Update overview.md --- docs/book/v1/virtualhosts/overview.md | 17 +++++++---------- 1 file changed, 7 insertions(+), 10 deletions(-) diff --git a/docs/book/v1/virtualhosts/overview.md b/docs/book/v1/virtualhosts/overview.md index 7de6a51..7dbb17e 100644 --- a/docs/book/v1/virtualhosts/overview.md +++ b/docs/book/v1/virtualhosts/overview.md @@ -2,20 +2,17 @@ Virtualhosts allow developers to host multiple applications on their local system. -Using this tool, you configure a virtualhost for each of your applications, and it will create them so that you can -start working with them. +Using this tool, you configure a virtualhost for each of your applications, and it will create them so that you can start working with them. **Example**: -- `api.dotkernel.localhost`: this could be the endpoint where you host your website's API -- `frontend.dotkernel.localhost`: this could be domain you host your website's frontend that will consume the API +* `api.dotkernel.localhost`: this could be the endpoint where you host your website's API +* `frontend.dotkernel.localhost`: this could be domain you host your website's frontend that will consume the API In the above example, the URLs are built like this: -- the subdomain is the identifier of your application (`api`/`frontend`) -- the domain is the identifier of your project (`dotkernel`) -- the TLD sends the requests to localhost where Apache will route them to their real location +* the subdomain is the identifier of your application (`api`/`frontend`) +* the domain is the identifier of your project (`dotkernel`) +* the TLD sends the requests to localhost where Apache will route them to their real location -## Note -> By using the pattern `*.localhost` for any new virtualhost, you do not need to modify the `hosts` file in Windows, -> because these are routed by default. +> By using the pattern `*.localhost` for any new virtualhost, you do not need to modify the `hosts` file in Windows, because these are routed by default.