From 7af307c1fd9cf21e84d00f919b2edcac30fb0b0b Mon Sep 17 00:00:00 2001 From: Alexis Urien Date: Fri, 22 Aug 2025 11:49:00 -0700 Subject: [PATCH 1/2] Update alternative docker command lauch to use custom https port --- symfony/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/symfony/index.md b/symfony/index.md index 75b8096b4b3..a331ace056f 100644 --- a/symfony/index.md +++ b/symfony/index.md @@ -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: From 2750d66100529a3f9b0da0ab334ca153b42c1f25 Mon Sep 17 00:00:00 2001 From: Alexis Urien Date: Fri, 22 Aug 2025 14:02:05 -0700 Subject: [PATCH 2/2] Update index.md Remove wrong backtick --- symfony/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/symfony/index.md b/symfony/index.md index a331ace056f..1d39da50381 100644 --- a/symfony/index.md +++ b/symfony/index.md @@ -91,7 +91,7 @@ docker compose up --wait > Alternatively, run the following command to start the web server on port `8080` and `8443`: > > ```console -> SERVER_NAME=localhost:80 HTTP_PORT=8080 HTTPS_PORT=8443 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: