Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions symfony/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,10 +88,10 @@ docker compose up --wait
>
> Be sure that the ports `80`, `443`, and `5432` of the host are not already in use. The usual offenders are Apache, NGINX, and Postgres. If they are running, stop them and run `docker compose up --wait` again.
>
> Alternatively, run the following command to start the web server on port `8080` with HTTPS disabled:
> Alternatively, run the following command to start the web server on port `8080` and `8443`:
>
> ```console
> SERVER_NAME=localhost:80 HTTP_PORT=8080 TRUSTED_HOSTS=localhost docker compose up --wait`
> SERVER_NAME=localhost:80 HTTP_PORT=8080 HTTPS_PORT=8443 TRUSTED_HOSTS=localhost docker compose up --wait
> ```

This starts the following services:
Expand Down