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