Hi, I read in django document that "Deploying Django with Apache <https://httpd.apache.org/> and mod_wsgi <http://www.modwsgi.org/> is a tried and tested way to get Django into production."
Hence I started with this combination. My Django application is working perfectly fine on http://localhost:8081. But my requirement is to take it to *https*://locahost:8081. I have installed apache and mod_wsgi on RHEL7 machine. and modified the configuration of Apache wrt mod_wsgi as: LoadModule wsgi_module modules/mod_wsgi.so WSGIScriptAlias / /path/to/django/app/wsgi.py WSGIPythonHome /home/user/python3.9 WSGIPythonPath "/home/user/python3.9/lib;/home/user/python3.9/lib/python3.9/site-packages" <Directory /path/to/django/app> <Files wsgi.py> Require all granted </Files> </Directory> Restarted the httpd service. Now what should be next step to take it to https? Any suggestions? Regards, Nikita -- You received this message because you are subscribed to the Google Groups "modwsgi" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/modwsgi/aaf82729-019b-4f89-9b05-85f736c045b8n%40googlegroups.com.
