I have deployed my Django application with apache2.4 to my production server. Everything is working fine on my web page but the apache2/error.log is full of these kind of messages:
[Sun Jan 12 14:58:59.308773 2020] [wsgi:error] [pid 13667] [client 172.69.33.202:10298] mod_wsgi (pid=13667): Exception occurred processing WSGI script '/var/www/html/****/wsgi.py'., referer: http://mp3.descargaryoutube.com/?id=-JaeBxYCI9k
[Sun Jan 12 14:58:59.309501 2020] [wsgi:error] [pid 13667] [client 172.69.33.202:10298] Traceback (most recent call last):, referer: http://mp3.descargaryoutube.com/?id=-JaeBxYCI9k
[Sun Jan 12 14:58:59.309547 2020] [wsgi:error] [pid 13667] [client 172.69.33.202:10298] File "/var/www/html/****/wsgi.py", line 3, in <module>, referer: http://mp3.descargaryoutube.com/?id=-JaeBxYCI9k
[Sun Jan 12 14:58:59.309559 2020] [wsgi:error] [pid 13667] [client 172.69.33.202:10298] from django.core.wsgi import get_wsgi_application, referer: http://mp3.descargaryoutube.com/?id=-JaeBxYCI9k
[Sun Jan 12 14:58:59.309585 2020] [wsgi:error] [pid 13667] [client 172.69.33.202:10298] ModuleNotFoundError: No module named 'django', referer: http://mp3.descargaryoutube.com/?id=-JaeBxYCI9k
Does these error messages come from an invalid request to my web server, or is there a real problem with my wsgi setup?