Cristian
Cristian

Reputation: 495

Run multiple twisted servers?

Is there some way to run multiple twisted servers simultaneously on the same port? So that they would be listening on different directories (for example: example.com/twisted1 is one twisted script, and example.com/twisted2 is another script)

Upvotes: 0

Views: 145

Answers (1)

David Silva
David Silva

Reputation: 44

You can router your scripts with an web framework, like: Django, Flask, Web2Py... Or, if you prefer you can create an router script for route manually

Upvotes: 1

Related Questions