From f9c73f6832cc61875923761b8aec1a1a90792017 Mon Sep 17 00:00:00 2001 From: deadvey Date: Sat, 2 Nov 2024 12:04:21 +0100 Subject: [PATCH] Update README.md --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 3048909..475e020 100755 --- a/README.md +++ b/README.md @@ -40,8 +40,8 @@ To set up Apache2 as a reverse proxy for your Node.js app: 1. Start your Node.js application (/node/app.js) on port 8003. You can run the application in a tmux session using the command:
-```sh -node app.js +```shell +$ node app.js ``` @@ -67,8 +67,8 @@ Replace /wordpress with the appropriate path for your exception:
To verify that the Node.js application is running and accessible through Apache2, you can use the curl command: -```sh -curl http://localhost:8003 +```shell +$ curl http://localhost:8003 ```