Definitely if you're using the rocket web server. There are various ways to 
run different versions of python on the same machine but it depends on your 
OS how to do it. Once you can run different pythons, you can run different 
versions of web2py at the same time, but you will need to use different 
ports e.g. 8080, 8081 etc. to direct the traffic to the right web2py 
instance. That's without Apache.

I also run different web2py instances behind the same Apache instance on a 
virtual host, but I have set up Apache to forward virtual host one to one 
port (using .htaccess), and virtual host two to a different port. The 
rocket server in web2py in each instance is told which port it should 
respond to. So the browser looks for www.hostone.com, .htaccess forwards 
that to port number 65789, and a web2py instance is run to service requests 
to port 65789. For hosttwo, the port number changes.

Here is a snippet of a .htacces file which does what I want:

RewriteCond %{HTTP_HOST}  hostone.com$
RewriteRule ^(.*)$        https://127.0.0.1:65789/$1 [P,QSA,L]

(There is another redirect which directs www.hostone.com to hostone.com).


On Saturday, 14 March 2020 19:06:20 UTC, Andrea Fae' wrote:
>
> Is it possible to have 2 differents environment on the same PC?
> web2py running python2.7 and web2py running ppython 3 separated...?
> Thank you 
>

-- 
Resources:
- http://web2py.com
- http://web2py.com/book (Documentation)
- http://github.com/web2py/web2py (Source code)
- https://code.google.com/p/web2py/issues/list (Report Issues)
--- 
You received this message because you are subscribed to the Google Groups 
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to web2py+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/web2py/ad264a91-085c-404a-b57a-1bd46d00460d%40googlegroups.com.

Reply via email to