Re: Python code changes are not reflecting on Django-based web server.

2021-08-19 Thread Hasan Baig
gt; >> On August 18, 2021 11:04:07 AM CDT, Hasan Baig wrote: >> Hi, >> >> I have been hosting a django-based web server (httpd with mod_wsgi package) >> on Linux CentOS 7. I used to reflect the changes made in my code by >> restarting the web server using

Python code changes are not reflecting on Django-based web server.

2021-08-18 Thread Hasan Baig
Hi, I have been hosting a django-based web server (httpd with mod_wsgi package) on Linux CentOS 7. I used to reflect the changes made in my code by restarting the web server using the following commands: sudo systemctl stop httpd sudo systemctl start httpd and it would reflect the changes smoo