Can I run two web servers on the same computer?

后端 未结 7 1000
执笔经年
执笔经年 2020-12-23 22:12

I just found out that I can write a really simple web server using Python. I have already an Apache web server I would like to try the Python based web server on this machi

7条回答
  •  遥遥无期
    2020-12-23 22:24

    The webservers would have no say in who services a connection request (this task is still at the operating system level). Furthermore, without special socket options, the socket must be bound to a unique combination of interface, internet address and port.

提交回复
热议问题