Deploy Django Project using Apache and WSGI

I want to deploy my Django project using Apache and WSGI, Windows. I tried everything on net, installed Apache, download visual studio builder, install pip install mod_wsgi, modified httpd.conf & httpd.conf… etc. I can can start Apache sucessfully but still my-site.com not reachable! I think I am missing something.

Maybe can someone help me , thanks a lot

‘’’
#httpd-vhosts

<VirtualHost *:80>

ServerName my-site.com

DocumentRoot "C:/my-django-project"

<Directory "C:/my-django-project">
	Require all granted
</Directory>

WSGIScriptAlias / "C:/my-django-project/wsgi.py"

# Additional directives as needed
'''