The Apache web server will stop when you will add the code directly into the Apache configuration by manually editing the file. You can add your following code in a conf file and upload the conf file from Extra Configuration page in Apache web server:
<Location /myapp1>
ProxyPass http://localhost:3000 ProxyPassReverse http://localhost:3000 </Location>
I am already adding it as an "Extra Configuration" file in the mentioned page.
As soon as I upload the file the apache server shuts down. I assume it is something wrong with my code because by commenting everything out and uploading it, the server does not shut down.
Am I missing anything in the configuration file?