readme shit

This commit is contained in:
DeaDvey 2024-11-02 10:50:42 +00:00
parent 4feee9bf92
commit de9620759a

View File

@ -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: 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:<br/>
``` node app.js``` ``` 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:<br/>
```ProxyPass / http://localhost:8003/``` ```ProxyPass / http://localhost:8003/```<br/>
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:<br/>
```ProxyPass /wordpress !``` ```ProxyPass /wordpress !```<br/>
Replace /wordpress with the appropriate path for your exception. Replace /wordpress with the appropriate path for your exception:<br/>
Testing ## Testing
To verify that the Node.js application is running and accessible through Apache2, you can use the curl command: To verify that the Node.js application is running and accessible through Apache2, you can use the curl command: