I need to serve many sites, on the same address and port, with different path, without using IIS.
For example, two static sites and one NodeJS server. I want to access them in these addresses:
http://localhost:80/static1
http://localhost:80/static2
http://localhost:80/node_server
I want also not to serve the static sites by the server or by any shared server for all of them, to prevent the sites to fall if the server had fall.
Which framework, except IIS, can be used to achieve those requirements? This framework should work on Windows or Linux. Thanks.
Apache httpd (http://httpd.apache.org).
static1
, another forstatic2
.node_server
(like here: Apache and Node.js on the Same Server).Good research!