# Focal Apache 2.4.68 覆盖包构建

此 Docker 构建使用 Focal 官方 `apache2` 源包的 `debian/` 规则，替换为 Apache HTTP Server 2.4.68 源码并生成同名的 `apache2`、`apache2-bin`、`apache2-data`、`apache2-utils` 包。安装后会覆盖系统包布局，包括 `/etc/apache2`，但 dpkg 会按 conffile 规则保留本地修改。

```bash
docker build --tag apache2-2.4.68-focal-overwrite-builder .
mkdir -p dist
docker run --rm -v "$PWD/dist:/out" apache2-2.4.68-focal-overwrite-builder
```

生成物只适用于 `Ubuntu 20.04 amd64`。构建脚本同时导出 Focal 官方旧版包，供离线回滚。
