Problem in diploying django application using WAMP

I am trying to diploy my website using WAMP server but I am getting 403 forbidden error

 **Forbidden**

You don't have permission to access this resource.
Apache/2.4.46 (Win64) PHP/7.3.21 mod_wsgi/4.7.1 Python/3.9 Server at localhost Port 80

and here is what I add to my my httpd.conf:

LoadFile "c:/users/aakas/appdata/local/programs/python/python39/python39.dll"
LoadModule wsgi_module "c:/users/aakas/appdata/local/programs/python/python39/lib/site-packages/mod_wsgi/server/mod_wsgi.cp39-win_amd64.pyd"
WSGIPythonHome "c:/users/aakas/appdata/local/programs/python/python39"
WSGIScriptAlias / C:/wamp64/www/medical_v2/medical/medical/wsgi.py"
WSGIPythonPath "C:/wamp64/www/medical_v2/medical/"

Alias /static/ C:/wamp64/www/medical_v2/medical/static/

<Directory C:/wamp64/www/medical_v2/medical/static/>
	Allow from all
	Require all granted
</Directory>

<Directory "C:/wamp64/www/medical_v2/medical/">
	<Files wsgi.py>
		Order deny,allow
		Allow from all
		Require all granted
	</Files>
</Directory>