Hi, I am trying to get my web application working over https. I am using Centos7. I have disabled the firewall and selinux ( temporarily for testing )
The following works with no issues for http on port 80. sudo python3.6 manage.py runmodwsgi --setup-only --port=80 --user apache --group apache --server-root=/etc/mod_wsgi-express-80 I get the following error when trying to access it over https/443. Below is the command I run to set it up. sudo python3.6 manage.py runmodwsgi --setup-only --user=apache --group=apache --server-root=/etc/mod_wsgi-express-443 --https-only --https-port=443 --ssl-certificate-file=/etc/pki/tls/certs/localhost.crt --ssl-certificate-key-file=/etc/pki/tls/private/localhost.key --server-name=myhost.local *Web browser* Forbidden You don't have permission to access /login/ on this server. *Error Log* [Wed Apr 11 18:47:33.429059 2018] [mpm_event:notice] [pid 12053:tid 140251110680704] AH00489: Apache/2.4.6 (CentOS) mod_wsgi/4.6.4 Python/3.6 OpenSSL/1.0.2k-fips configured -- resuming normal operations [Wed Apr 11 18:47:33.429098 2018] [core:notice] [pid 12053:tid 140251110680704] AH00094: Command line: 'httpd (mod_wsgi-express) -f /etc/mod_wsgi-express-443/httpd.conf -D MOD_WSGI_VIRTUAL_HOST -D MOD_WSGI_WITH_HTTPS -D MOD_WSGI_HTTPS_ONLY -D MOD_WSGI_MPM_ENABLE_EVENT_MODULE -D MOD_WSGI_MPM_EXISTS_EVENT_MODULE -D MOD_WSGI_MPM_EXISTS_WORKER_MODULE -D MOD_WSGI_MPM_EXISTS_PREFORK_MODULE' [Wed Apr 11 18:47:50.725314 2018] [authz_core:error] [pid 12061:tid 140251110143744] [client 10.16.18.11:63623] AH01630: client denied by server configuration: /etc/mod_wsgi-express-443/htdocs/login Many thanks. -- 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 post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/modwsgi. For more options, visit https://groups.google.com/d/optout.
