On 30 August 2010 14:25, nitin chandra <[email protected]> wrote: > Hi All, > > I compiled ApAcHe 2.2.15 from source with SSL and has created and > http.conf ( the basic apache conf file). Now i wanted to know should i > put the <VirtualHost *:80> </VirtualHost> in http.conf or > http-virhost.conf.
If you have installed from Apache source code, then the ASF config file layout would see virtual host definitions in the file: extra/httpd-vhosts.conf You will need to uncomment in httpd.conf the line: Include .../extra/httpd-vhosts.conf where '...' will be whatever config file has based on where you installed it. > Also in my http-ssl.conf, 'SSLEnable on' is set, do i still need to > specify SSLEnable on in Virtual Host Settings. You should be using 'SSLEngine', not 'SSLEnable'. See: http://httpd.apache.org/docs/2.2/ssl/ssl_compat.html All you should need to do is uncomment in httpd.conf the line: Include .../extra/httpd-ssl.conf and that file is where all SSL enabling options would be. If your config file structure is not like that, then I have no idea what source code distribution you have built from. BTW, this has all got nothing to do with mod_wsgi, but is an Apache user question. You may therefore want to search out a mailing list for Apache users instead. Graham -- 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.
