Skip to content
This repository was archived by the owner on Dec 23, 2024. It is now read-only.

Latest commit

 

History

History
executable file
·
29 lines (19 loc) · 1.1 KB

README.md

File metadata and controls

executable file
·
29 lines (19 loc) · 1.1 KB

Poor Clares Arundel

DEPRECATED - REPLACED BY https://github.com/johnnyreilly/poorclaresarundel-aca

Build and Deploy

Built with Azure Container Apps and deployed here: https://main-web.yellowcliff-09c0e434.northeurope.azurecontainerapps.io/

Test locally with:

docker-compose up

Custom domain

To use custom domains with Azure Container Apps you need to create a certificate:

https://learn.microsoft.com/en-gb/azure/container-apps/custom-domains-certificates

Certificate created with:

sudo openssl req -x509 -newkey rsa:4096 -sha256 -days 3650 -nodes \
  -keyout poorclaresarundel.org.key -out poorclaresarundel.org.crt -subj "/CN=poorclaresarundel.org" \
  -addext "subjectAltName=DNS:poorclaresarundel.org,DNS:www.poorclaresarundel.org,IP:20.31.220.24"
sudo chmod +r poorclaresarundel.org.key
cat poorclaresarundel.org.crt poorclaresarundel.org.key > poorclaresarundel.org.pem