fix Linux versions in README, fix UI not working when serve behind / and revert back to bullseye for tests machines

This commit is contained in:
fl0ppy-d1sk 2024-01-09 10:46:25 +01:00
parent eb2042a0e8
commit d1a8b99be7
No known key found for this signature in database
GPG key ID: 93EE47CC3D061500
8 changed files with 15 additions and 15 deletions

View file

@ -251,10 +251,10 @@ You will find more information in the [Kubernetes section](https://docs.bunkerwe
List of supported Linux distros :
- Debian 11 "Bullseye"
- Debian 12 "Bookworm"
- Ubuntu 22.04 "Jammy"
- Fedora 38
- RHEL 8.7
- Fedora 39
- RHEL 8.9
Repositories of Linux packages for BunkerWeb are available on [PackageCloud](https://packagecloud.io/bunkerity/bunkerweb), they provide a bash script to automatically add and trust the repository (but you can also follow the [manual installation](https://packagecloud.io/bunkerity/bunkerweb/install) instructions if you prefer).
@ -268,10 +268,10 @@ You will find more information in the [Linux section](https://docs.bunkerweb.io/
List of supported Linux distros :
- Debian 11 "Bullseye"
- Debian 12 "Bookworm"
- Ubuntu 22.04 "Jammy"
- Fedora 38
- RHEL 8.7
- Fedora 39
- RHEL 8.9
[Ansible](https://www.ansible.com/) is an IT automation tool. It can configure systems, deploy software, and orchestrate more advanced IT tasks such as continuous deployments or zero downtime rolling updates.

View file

@ -333,7 +333,7 @@ def before_request():
session.clear()
@app.route("/")
@app.route("/", strict_slashes=False)
def index():
if app.config["USER"]:
if current_user.is_authenticated: # type: ignore

View file

@ -1,3 +1,3 @@
deb http://deb.debian.org/debian bookworm main
deb http://deb.debian.org/debian-security/ bookworm-security main
deb http://deb.debian.org/debian bookworm-updates main
deb http://deb.debian.org/debian bullseye main
deb http://deb.debian.org/debian-security/ bullseye-security main
deb http://deb.debian.org/debian bullseye-updates main

View file

@ -1 +1 @@
deb [arch=amd64] https://download.docker.com/linux/debian bookworm stable
deb [arch=amd64] https://download.docker.com/linux/debian bullseye stable

View file

@ -21,7 +21,7 @@ resource "scaleway_instance_server" "instance" {
depends_on = [scaleway_account_ssh_key.ssh_key]
name = "cicd_bw_autoconf"
type = "DEV1-M"
image = "debian_bookworm"
image = "debian_bullseye"
ip_id = var.autoconf_ip_id
}

View file

@ -21,7 +21,7 @@ resource "scaleway_instance_server" "instance" {
depends_on = [scaleway_account_ssh_key.ssh_key]
name = "cicd_bw_docker"
type = "DEV1-M"
image = "debian_bookworm"
image = "debian_bullseye"
ip_id = var.docker_ip_id
}

View file

@ -21,7 +21,7 @@ resource "scaleway_instance_server" "instance" {
depends_on = [scaleway_account_ssh_key.ssh_key]
name = "cicd_bw_linux"
type = "DEV1-M"
image = "debian_bookworm"
image = "debian_bullseye"
ip_id = var.linux_ip_id
}

View file

@ -27,7 +27,7 @@ resource "scaleway_instance_server" "instances" {
depends_on = [scaleway_account_ssh_key.ssh_key]
name = "cicd_bw_swarm_${count.index}"
type = "DEV1-L"
image = "debian_bookworm"
image = "debian_bullseye"
ip_id = var.swarm_ips_id[count.index]
private_network {
pn_id = scaleway_vpc_private_network.pn.id