This is a discussion on httpd.conf and SSL within the Linux Web Servers forums, part of the Web Server and Related Forums category; Hello ! I'm running httpd-2.0-40 on Linux RH 9.0. My project is located under /var/www/...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
Hello !
I'm running httpd-2.0-40 on Linux RH 9.0. My project is located under /var/www/cgi-bin and I have index.cgi script in this location. The only changes I made in /etc/http/conf/httpd.conf are: 1. Changed 'DocumentRoot' directive to point to "/var/www/cgi-bin" 2. Added index.cgi in 'DirectoryIndex' directive. 3. Added 'AddHandler cgi-script .cgi' 4. Under <Directory "/var/www/cgi-bin"> I changed 'Option None' to 'Option ExecCGI'. When I run my project from the URL: http://MY_COMP_ADDR everything is working perfectly, and loads my login page. Recently I added https capabilities to my project, for that I made no additional changes in the httpd.conf file. My problem is that I get on the browser the default test page instead my login page (I remind you that with regular http everything works as it should). Can anyone help? |
|
|||
|
"Asaf B." <asafbarel@walla.co.il> wrote in message ...
> Hello ! > > I'm running httpd-2.0-40 on Linux RH 9.0. > My project is located under /var/www/cgi-bin and I have index.cgi > script in this location. > > The only changes I made in /etc/http/conf/httpd.conf are: > 1. Changed 'DocumentRoot' directive to point to "/var/www/cgi-bin" > 2. Added index.cgi in 'DirectoryIndex' directive. > 3. Added 'AddHandler cgi-script .cgi' > 4. Under <Directory "/var/www/cgi-bin"> I changed 'Option None' to > 'Option ExecCGI'. > > When I run my project from the URL: http://MY_COMP_ADDR everything is > working perfectly, and loads my login page. > > Recently I added https capabilities to my project, for that I made no > additional changes in the httpd.conf file. My problem is that I get on > the browser the default test page instead my login page (I remind you > that with regular http everything works as it should). > > Can anyone help? You shall have ssl.conf file in the conf dir that handles the ssl stuff. |
|
|||
|
"Tulan W. Hu" <twhu@lucent.com> wrote in message news:<biikt3$jvr@netnews.proxy.lucent.com>...
> "Asaf B." <asafbarel@walla.co.il> wrote in message ... > > Hello ! > > > > I'm running httpd-2.0-40 on Linux RH 9.0. > > My project is located under /var/www/cgi-bin and I have index.cgi > > script in this location. > > > > The only changes I made in /etc/http/conf/httpd.conf are: > > 1. Changed 'DocumentRoot' directive to point to "/var/www/cgi-bin" > > 2. Added index.cgi in 'DirectoryIndex' directive. > > 3. Added 'AddHandler cgi-script .cgi' > > 4. Under <Directory "/var/www/cgi-bin"> I changed 'Option None' to > > 'Option ExecCGI'. > > > > When I run my project from the URL: http://MY_COMP_ADDR everything is > > working perfectly, and loads my login page. > > > > Recently I added https capabilities to my project, for that I made no > > additional changes in the httpd.conf file. My problem is that I get on > > the browser the default test page instead my login page (I remind you > > that with regular http everything works as it should). > > > > Can anyone help? > > You shall have ssl.conf file in the conf dir that handles the ssl stuff. Is there a reference someone can refer me to? |