mirror of
https://github.com/bunkerity/bunkerweb
synced 2026-05-24 09:28:37 +00:00
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:
parent
eb2042a0e8
commit
d1a8b99be7
8 changed files with 15 additions and 15 deletions
12
README.md
12
README.md
|
|
@ -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.
|
||||
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
deb [arch=amd64] https://download.docker.com/linux/debian bookworm stable
|
||||
deb [arch=amd64] https://download.docker.com/linux/debian bullseye stable
|
||||
|
|
|
|||
|
|
@ -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
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -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
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -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
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Reference in a new issue