Which is most likely because your application code is generating into the HTML complete URLs for the resources to be loaded into the page and in doing that you are generating a https address. Your would almost have to have been doing that because the way your 80 virtual host is setup it cannot handle static file serving. End result is that even though could say how to fix your 80 virtual host to handle static file serving, it probably still not work if you are generating https references.
Provide an example of the HTML page generated by your application showing the section where static page is included. Ie., do not provide your Python code. Use the view source feature of your browser to look at the raw HTML of the page and then cut and paste just the section of the HTML with the inclusion. Do not provide the complete HTML, we do not need to see it all and it will just fill up the email message unnecessarily. BTW, do not create a separate discussion thread for each post. Always do a reply-all as a followup to the existing message so the content of the original discussion is not lost. Graham On 13 August 2011 17:55, nitin chandra <[email protected]> wrote: > Hello All, > > As I had pasted earlier my HTTPD.CONF file....with reference to that ... > > I have blocked the complete SSL block settings, to test just the > simple http on port 80. > > But some how the link to pages does not work / load the new page. > > my WSGI is serving only static page and that to only the one which is given > in > WSGIScriptAlias. A link in that page does not open / load the corresponding > page > > This works when SSL is enabled. > > Please guide. > > Thanks > > Nitin > > -- > You received this message because you are subscribed to the Google Groups > "modwsgi" group. > To post to this group, send email to [email protected]. > To unsubscribe from this group, send email to > [email protected]. > For more options, visit this group at > http://groups.google.com/group/modwsgi?hl=en. > > -- You received this message because you are subscribed to the Google Groups "modwsgi" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/modwsgi?hl=en.
