Posts: 4,647
Threads: 1,494
Joined: Sep 2016
Mar-06-2017, 06:27 AM
(This post was last modified: Mar-06-2017, 06:27 AM by Skaperen.)
i am looking for a web server coded entirely in
python. it should be usable in place of servers like apache and nginx in the sense of how it is administered: install, config, launch (with read docs where needed). it should use mostly standard modules with a minimum that need to be installed (and all non-standard ones should be pure python). it should support CGI although if that support is limited to scripts in
python, that's ok. it must support multiple domains sharing the same IP address in the standard way. it must support web sites configured on alternate ports. it must support HTTPS.
is there such a thing? if there are multiple, which is best?
Tradition is peer pressure from dead people
What do you call someone who speaks three languages? Trilingual. Two languages? Bilingual. One language? American.
Posts: 4,647
Threads: 1,494
Joined: Sep 2016
the plan is to transition from CGI to WSGI on this server. having support for both is vrucial.
Tradition is peer pressure from dead people
What do you call someone who speaks three languages? Trilingual. Two languages? Bilingual. One language? American.
Posts: 4,647
Threads: 1,494
Joined: Sep 2016
Mar-25-2017, 06:34 AM
(This post was last modified: Mar-25-2017, 06:34 AM by Skaperen.)
(Mar-24-2017, 04:52 PM)nilamo Wrote: Why is it crucial? You'd never use both at the same time.
sure i would. i have more that one site using CGI. once i change one site to WSGI then that begins the interim period when both are in use. my VPS server in .nl currently has 1 IPv4 address and 18446744073709551616 IPv6 addresses. only one server process at a time can listen to the same address and port (80) at the same time. i am thinking there may be a way to configure an additional regular web server to do the CGI stuff relayed via WSGI. i need to spend some time testing these schemes since if i can get one work it can reduce my needs. i need to choose python based WSGI setup in that base. i'd like to get some test code to make a quick and correct off-port WSGI web site that way.
fyi, i did make a little web server in python. but it is definitely
not wsgi based. it does load modules address by the web request.
Tradition is peer pressure from dead people
What do you call someone who speaks three languages? Trilingual. Two languages? Bilingual. One language? American.