diff --git a/README.md b/README.md
index 4ad587c..19dde62 100755
--- a/README.md
+++ b/README.md
@@ -33,23 +33,23 @@ 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:
- Start your Node.js application (/node/app.js) on port 8003. You can run the application in a tmux session using the command:
+ 1. Start your Node.js application (/node/app.js) on port 8003. You can run the application in a tmux session using the command:
``` node app.js```
- 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/```
- 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
+## Testing
To verify that the Node.js application is running and accessible through Apache2, you can use the curl command: