From b4e8aa0a1cd0268638c7010a2e4438d21f92ea89 Mon Sep 17 00:00:00 2001 From: "DESKTOP-RTLN3BA\\$punk" Date: Fri, 26 Jun 2026 12:00:50 -0700 Subject: [PATCH] feat(docker): add proxy directory and Caddyfile to installation script --- docker/scripts/install.ps1 | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docker/scripts/install.ps1 b/docker/scripts/install.ps1 index 23b14c3c4..761fef80e 100644 --- a/docker/scripts/install.ps1 +++ b/docker/scripts/install.ps1 @@ -330,11 +330,13 @@ Write-Info "Installation directory: $InstallDir" New-Item -ItemType Directory -Path "$InstallDir\scripts" -Force | Out-Null New-Item -ItemType Directory -Path "$InstallDir\searxng" -Force | Out-Null +New-Item -ItemType Directory -Path "$InstallDir\proxy" -Force | Out-Null $Files = @( @{ Src = "docker/docker-compose.yml"; Dest = "docker-compose.yml" } @{ Src = "docker/docker-compose.gpu.yml"; Dest = "docker-compose.gpu.yml" } @{ Src = "docker/.env.example"; Dest = ".env.example" } + @{ Src = "docker/proxy/Caddyfile"; Dest = "proxy/Caddyfile" } @{ Src = "docker/postgresql.conf"; Dest = "postgresql.conf" } @{ Src = "docker/scripts/migrate-database.ps1"; Dest = "scripts/migrate-database.ps1" } @{ Src = "docker/searxng/settings.yml"; Dest = "searxng/settings.yml" }