Hi Kamal,
On 15/08/2018 16.32, Kamal Sharma wrote:
> I am facing a problem that at 80 port my tomcat is running and i just want
> to deploy my django application on the same server so how can i change the
> port number please help me.
>
This is not really related to Django but more of a web server
administration issue, but anyway.
I would probably put up a webserver that binds to port 80, and then
proxies the requests to both your tomcat server and your django WSGI
application.
So you would need to make your Tomcat server bind to another port and
the proxy requests from
http://my-webserver/tomcat to that port and
requests to
http://my-server/django to your django wsgi application.
How to do that depends on which web server you choose.
Hope that helps.
Kind regards,
Kasper Laudrup