docs: add server name tips and custom https port note (#368)

* docs: add server name tips and custom https port note

* Update docs/build.md

Co-authored-by: Kévin Dunglas <kevin@dunglas.fr>

* Update docs/build.md

Co-authored-by: Kévin Dunglas <kevin@dunglas.fr>

Co-authored-by: Kévin Dunglas <kevin@dunglas.fr>
This commit is contained in:
Maxime Helias 2023-01-20 09:32:22 +01:00 committed by GitHub
parent 8b82b74f52
commit c10ea680ae
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -36,6 +36,8 @@ Use the `SERVER_NAME` environment variable to define your custom server name(s).
If you use Mercure, keep `caddy:80` in the list to allow the PHP container to request the caddy service.
*Tips: You can define your server name variable in your `.env` file to keep it at each up*
## Using custom HTTP ports
Use the environment variables `HTTP_PORT`, `HTTPS_PORT` and/or `HTTP3_PORT` to adjust the ports to your needs, e.g.
@ -43,3 +45,5 @@ Use the environment variables `HTTP_PORT`, `HTTPS_PORT` and/or `HTTP3_PORT` to a
HTTP_PORT=8000 HTTPS_PORT=4443 HTTP3_PORT=4443 docker compose up --build
to access your appplication on [https://localhost:4443](https://localhost:4443).
*Note: Let's Encrypt only supports the standard HTTP and HTTPS ports. Creating a Let's Encrypt certificate for another port will not work, you have to use the standard ports or to configure Caddy to use another provider.*