From 51697200e5aba09313b072f5e49c4ae382280e61 Mon Sep 17 00:00:00 2001 From: DeaDvey Date: Sat, 2 Nov 2024 10:56:33 +0000 Subject: [PATCH] maybe fixed the syntax issues with md --- README.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/README.md b/README.md index 7601f33..609f227 100755 --- a/README.md +++ b/README.md @@ -34,22 +34,22 @@ This project utilizes Apache2 as a reverse proxy to handle incoming web traffic 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:\n +1. Start your Node.js application (/node/app.js) on port 8003. You can run the application in a tmux session using the command:\n - `node app.js`
+`node app.js`
- 2. Edit the Apache configuration file /etc/apache2/sites-enabled/000-default.conf and add the following lines to forward requests to the Node.js app:
+2. Edit the Apache configuration file /etc/apache2/sites-enabled/000-default.conf and add the following lines to forward requests to the Node.js app:
- `ProxyPass / http://localhost:8003/`
+`ProxyPass / http://localhost:8003/`
- 3. If you have other sites or applications running on Apache2 that should not be proxied to Node.js, you can add exceptions like this:
+3. If you have other sites or applications running on Apache2 that should not be proxied to Node.js, you can add exceptions like this:
- `ProxyPass /wordpress !`
+`ProxyPass /wordpress !`
- Replace /wordpress with the appropriate path for your exception:
+Replace /wordpress with the appropriate path for your exception:
## Testing