From 3fb49a0210ba8d007e04b53b86d1bc882f150cee Mon Sep 17 00:00:00 2001 From: Mike Pirog Date: Thu, 17 Oct 2024 10:44:27 -0400 Subject: [PATCH] #131: update custom test to pass through custom nginx version --- examples/custom/.lando.yml | 2 +- examples/custom/Dockerfile.node | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/custom/.lando.yml b/examples/custom/.lando.yml index cd2c5bb..d96d40a 100644 --- a/examples/custom/.lando.yml +++ b/examples/custom/.lando.yml @@ -10,7 +10,7 @@ services: dockerfile: Dockerfile.node custom81: type: php:custom - via: nginx + via: nginx:1.17 ssl: true webroot: web config: diff --git a/examples/custom/Dockerfile.node b/examples/custom/Dockerfile.node index 3f73dff..8bf7795 100644 --- a/examples/custom/Dockerfile.node +++ b/examples/custom/Dockerfile.node @@ -1,4 +1,4 @@ -FROM devwithlando/php:7.4-apache-4 +FROM devwithlando/php:7.4-apache-2 # Choose the major node version ENV NODE_VERSION=12