I am trying to find out the configuration steps for configuring my apache with SSL (https). The server in use is an Red hat linux machine, and apache is already installed in it (comes by default with linux).

How can I configure this apache (or install apache with ssl) on linux machine? I have already done it on my windows machine, but do not have any idea of configurations on linux machine.

link|improve this question
1  
Why would Apache under Linux be much different than Apache under Windows? See mod_ssl for full details of configuring Apache's TLS support. – sarnold Dec 6 '11 at 9:08
IMHO this question does not belong to stackoverflow: should be moved to superuser.com – Erik Dec 6 '11 at 9:10
1  
possible duplicate of KNow nothing about ssl , how to setup apache to run with ssl? – MadHatter Dec 6 '11 at 10:47
Have you read the manual (httpd.apache.org/docs/2.0/ssl) yet? – voretaq7 Dec 6 '11 at 17:23
feedback

migrated from stackoverflow.com Dec 6 '11 at 10:38

This question came from our site for professional and enthusiast programmers.

3 Answers

Configuring apache is identical regardless of the OS used.

The only difference is in the actual filesystem locations used (not even in the format of these paths): Windows uses C:/httpd/etc and Unix uses /etc/httpd (for example).

link|improve this answer
feedback

Run yum install mod_ssl on your rig to get SSL up and running. After that you should give some more information what you want to configure. Study the ssl.conf (or similar named file) which gets installed on your system. It is very well documented.

Additionally I'd suggest reading the Apache SSL documentation http://httpd.apache.org/docs/2.2/ssl/ssl_howto.html

link|improve this answer
feedback

If this is a RHEL box, the steps are well covered in the deployment guide:

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.