This repository contains a setup for running PHP 8.4 with FPM and Nginx with HTTPS. Everything is preconfigured to serve as a base for your development.
./name.sh hello.dev
: Sets a custom domain as the configured one for nginx and SSL certificates.
It uses mkcert
for generating the SSL certificates so you need to have this before hand. This allows you to work with HTTPS in your local environment.
Also, it will add the domain to /etc/hosts (if you allow it). This is required either way.
In Ubuntu you can install it like this:
sudo apt-get -y install mkcert
./docker/setup/build.sh
: Builds docker-compose.yaml (feel free to modify this file)../docker/up.sh [args]
: Lifts your docker compose. You may want to do it in detached mode:./docker/up.sh -d
./docker/down.sh
: Down down down../docker/resatart.sh
: Restarts your containers.
After the build & up, the domain should be reachable (e.g.: https://hello.dev).