I have created a web service using django, wsgi and nginx in ubuntu.(http://127.0.0.1:8000) . My network connection is NAT. I want to access to this web service from Linux in VMWare. How can I do this?
I have created a web service using django, wsgi and nginx in ubuntu.(http://127.0.0.1:8000) . My network connection is NAT. I want to access to this web service from Linux in VMWare. How can I do this?
Don't use
NAT
but useBridge
in your VM Network Adapter. Also configure your web service and/or nginx to listen on the real IP of the VM and not onlylocalhost
.