maybe fixed the syntax issues with md

This commit is contained in:
DeaDvey 2024-11-02 10:56:33 +00:00
parent f740279454
commit 51697200e5

View File

@ -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: 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`<br/> `node app.js`<br/>
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/> 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/`<br/> `ProxyPass / http://localhost:8003/`<br/>
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/> 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 !`<br/> `ProxyPass /wordpress !`<br/>
Replace /wordpress with the appropriate path for your exception:<br/> Replace /wordpress with the appropriate path for your exception:<br/>
## Testing ## Testing