I m playing around with Django and have built my personal homepage in Django, but I want to use my wordpress blog as a path.
For example if I want to path /blog/
in Django or in lighttpd so it will render the PHP wordpress site what is the best way to do that?
I tested with proxy.server in lighttpd with no luck - it seems like Django overrides the lightttpd s alias.
proxy.server = ("blog/" =>
((
"host" => "123.123.123.123",
"port" => 80
))
)
It would be no problem just to let blog.testsite.com go to an lighttpd instance which will render the PHP, but that s not what I want.