Skip to content

Latest commit

 

History

History
38 lines (26 loc) · 677 Bytes

README.md

File metadata and controls

38 lines (26 loc) · 677 Bytes

Joomla project template

Joomla website is running in Docker environment.

Stack

  • PHP 8.3.1
  • Joomla 5
  • Nginx
  • Maria DB 11.2
  • Adminer

Quick start

  • Copy joomla app in joomla folder.
  • Edit docker/nginx.conf file: replace example.org domain
  • Copy .env.example to .env, edit
  • docker compose up -d

Hot to renew Let's encrypt certificate

Docker-compose already has certbot container you can use, just execute:

docker compose run --rm certbot renew

Add certificate renew in cron

crontab -e

Add this line, it will run certbot renew every second month:

0 0 1 */2 * docker compose run --rm certbot renew