Install Django on Apache with mod_wsgi on Linux

preview_player
Показать описание
This tutorial will help you to setup django server on linux with apache and mod_wsgi
Рекомендации по теме
Комментарии
Автор

Why I did not find it before. After long hours and frustrations finally, I watch this tutorial and finished my configuration. This video is made my day. Usually, I never comment but I am very happy.

electrowave
Автор

I was struggling on adding Django to my web server for the longest time. Any guide/tutorial I could find was having me compile this or compile that, then I found this video. Amazing, worked perfectly, absolutely no problems whatsoever, clear, and precise. You have my utmost appreciation. Thank you.

SniperDog
Автор

This is among the best start-up videos for Django learners. You have cracked it Flouken! You have cleared so many confusions in my mind with this simple step-by-step tutorial.

utkarshsinha
Автор

This video should be in the Django docs. Thank you! 

madamerosario
Автор

Amazing explanation .. now I am fan for your tutorials..

maheshgadipea
Автор

This is quite old, and some things have changed. This is what I had to change until I saw the "It worked!":
ONE: In firstweb.conf "Order allow, deny Allow from all" has to be replaced with "Require all granted".
TWO: In firstweb.wsgi replace
"import django.core.handlers.wsgi
application =
with
"from django.core.wsgi import get_wsgi_application
application = get_wsgi_application()"
THREE: I also moved firstweb.wsgi from home to the - but changing the right of home might have worked as well.

equicomplex
Автор

You're life saver :) Just successfully deployed

nguyenhohai
Автор

very usefull tutorial and the way you explain the thinks, slowly but clearly

moisebotsoe
Автор

Absolutely fantastic. I've been looking for something like this for months now. Thank you so very much.

Smunchy
Автор

Most definitely! I absolutely love the framework. It just feels really detailed, yet simple.. and smooth. What do you think of the Django framework?

Smunchy
Автор

Great tutorial, exactly what I have been looking for.

CeboMakeleni
Автор

You are welcome, I am happy the tutorial has been helping :-)

bsdtutorial
Автор

move the file .wsgi as told in this tutorial to another folder like /home/youruser/wsgi/ (create that folder if not exists with mkdir command).(move the file using mv command)

then give full access to that folder, using in your terminal:
"sudo chmod -R 777 /home/youruser/wsgi/"

that's it.

NicoLlanosB
Автор

the video is still very helpful for newbies. thanks!

andyz
Автор

Nice tutorial. However, it would be good if you included a typed transcript along with the tutorial. If this exists, I didn't see a link. You might record this easily using a keyboard logger during your session with minor editing at the end.

Russell
Автор

this video is so helpful! thank you so much for taking the time to make this!

onieltoledo
Автор

All I can say is thank you very much for a such a great tutorial and spent your time to teach us.

Thanks!

danielbassa
Автор

Very helpful. Like that you explain everything thourougly.

martinklingenberg
Автор

This tutorial is the best out there, thanks bro

pelayo
Автор

Yes you are right. I forgot to add it for this tutorial. I will do it asap

bsdtutorial