<IfModule ssl_module>
SSLRandomSeed startup builtin
SSLRandomSeed connect builtin
</IfModule>
WSGIScriptAlias /mysite "F:/mysite/mysite/wsgi.py"
WSGIPythonPath "F:/mysite/mysite/"
<Directory "F:/mysite/mysite/mysite/">
<Files wsgi.py>
Require all granted
</Files>
</Directory>
Thank this is my wsgi.py
"""
WSGI config for mysite project.
It exposes the WSGI callable as a module-level variable named ``application``.
For more information on this file, see
"""
import os
from django.core.wsgi import get_wsgi_application
os.environ.setdefault('DJANGO_SETTINGS_MODULE', 'mysite.settings')
application = get_wsgi_application()
But as told before i see only it works
What is wrong?
Thanks