can i run multiple python http servers on one machine to receive http post request from a webpage?
currently i am running an http server on port 80 and on the web page there is a HTML form which sends the http post request to the python server and in the HTML form i am using the my server's address like this : "http://123.123.123.123" and i am receiving the requests
but i want to run multiple servers on the same machine with different ports for each server.
if i run 2 more servers on port 21200 and 21300 how do i send the post request from the HTML form on a specified port , so that the post request is received and processed by correct server??
do i need to define the server address like this : "http://123.123.123.123:21200" and "http://123.123.123.123:21300" ?