Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
## {{ UNRELEASED_VERSION }} - [{{ UNRELEASED_DATE }}]({{ UNRELEASED_LINK }})

## v1.2.0 - [August 29, 2025](https://github.com/lando/apache/releases/tag/v1.2.0)

* Migrated packages to use the Bitnamilegacy repository
* Minor updates to use any new tags and release builds

## v1.1.3 - [December 6, 2024](https://github.com/lando/apache/releases/tag/v1.1.3)

* Updated the version index.md to get Docuverse page to build correctly.
Expand Down
4 changes: 2 additions & 2 deletions builders/apache.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ module.exports = {
version: '2.4',
supported: ['2.4'],
pinPairs: {
'2.4': 'bitnami/apache:2.4.41-debian-10-r52',
'2.4': 'bitnamilegacy/apache:2.4.65-debian-12-r2',
},
patchesSupported: true,
confSrc: path.resolve(__dirname, '..', 'config'),
Expand Down Expand Up @@ -48,7 +48,7 @@ module.exports = {

// Build the default stuff here
const apache = {
image: `bitnami/apache:${options.version}`,
image: `bitnamilegacy/apache:${options.version}`,
command: '/launch.sh',
environment: options.environment,
user: 'root',
Expand Down
4 changes: 2 additions & 2 deletions docs/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ services:

## Supported versions

* **[2.4](https://hub.docker.com/r/bitnami/apache)** **(default)**
* **[2.4](https://hub.docker.com/r/bitnamilegacy/apache/tags?name=2.4.)** **(default)**
* [custom](https://docs.lando.dev/core/v3/services/lando.html#overrides)

## Patch versions
Expand All @@ -35,5 +35,5 @@ services:
type: apache:2.4.62
```

But make sure you use one of the available [patch tags](https://hub.docker.com/r/bitnami/apache/tags) for the underlying image we are using.
But make sure you use one of the available [patch tags](https://hub.docker.com/r/bitnamilegacy/apache/tags) for the underlying image we are using.

4 changes: 2 additions & 2 deletions examples/2.4/.lando.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ proxy:
- landoapache.lndo.site
services:
defaults:
type: apache
type: apache:2.4
patch:
type: apache:2.4.39
type: apache:2.4.64

# This is important because it lets lando know to test against the plugin in this repo
# DO NOT REMOVE THIS!
Expand Down
8 changes: 4 additions & 4 deletions examples/2.4/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ lando start
Run the following commands to validate things are rolling as they should.

```bash
# Should return 2.4.41 for the default version
lando exec defaults -- apachectl -V | grep 2.4.41
# Should return 2.4.65 for the default version
lando exec defaults -- apachectl -V | grep 2.4

# Should return 2.4.39 for the patch service
lando exec patch -- apachectl -V | grep 2.4.39
# Should return 2.4.64 for the patch service
lando exec patch -- apachectl -V | grep 2.4.64

# Should serve from the app root by default
lando exec defaults -- curl http://localhost | grep ROOTDIR
Expand Down