i have made following changes in my vhost conf file and now services run. 
Also, I don't see any error. But instead of default django page I get 
default apache page.

Here is my new conf file.
-----------------------------------------------------------------
<VirtualHost *:80>
        ServerName firstweb.com
        ServerAlias www.firstweb.com
                <Directory /var/www/firstweb>
                <Files wsgi.py>
                        Require all granted
                </Files>
                </Directory>

</VirtualHost>

------------------------------------------------------------------------------------------------------------------

I checked for error. I don't see any error. 

Please help


On Saturday, 26 August 2017 20:02:47 UTC+5:30, sarfaraz ahmed wrote:
>
> Hello Friends,
>
> Please help me with this. 
>
> I am new to linux and I am attempting to deploy my trial app on AWS ubuntu 
> server.
>
> my vhost file looks like this 
> <VirtualHost *:80>
>         WSGIScriptAlias / /var/www/firstweb/firstweb/wsgi.py
>
>         WSGIPythonPath /var/www/firstweb
>         ServerName firstweb.com
>
>         ServerAlias www.firstweb.com
>                 <Directory /var/www/django_project/firstweb>
>                 <Files wsgi.py>
>                         Require all granted
>                 </Files>
>                 </Directory>
> </VirtualHost>
>
> now when I add WSGIPythonPath.. my apache fails to restart. 
>
> If I remove that that I get following error when I try to access this from 
> my computer. 
> ImportError: No module named django.core.wsgi
>
> Now, I searched on the web and found following link
> https://www.webforefront.com/django/setupapachewebserverwsgi.html
>  
> which has some solution which I am not able to understand so far.
>
> after wasting my time in attempting to deploy on windows server. everyone 
> suggested me to deploy on linux.
>
> I M NOT USING virualenv. 
>
> Thanks in advance. 
>
> Regards,
> Sarfaraz Ahmed
>
>
>
>
>

-- 
You received this message because you are subscribed to the Google Groups 
"Django users" 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/django-users.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/django-users/cecafa96-463b-4314-97ce-581ef0e89d82%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to