Scientific Linux 6
Sponsored Link

SSL Wrapper2011/05/15

 
Enable SSL Wrapper to use HTTPS.
[1] Create certificates on Pound Server.
[root@www ~]#
cd /etc/pki/tls/certs

[root@www certs]#
openssl req -x509 -nodes -newkey rsa:1024 -keyout /etc/pki/tls/certs/pound.pem -out /etc/pki/tls/certs/pound.pem

Generating a 1024 bit RSA private key
......++++++
.......++++++
writing new private key to '/etc/pki/tls/certs/pound.pem'
-----
You are about to be asked to enter information that will be incorporated
into your certificate request.
What you are about to enter is what is called a Distinguished Name or a DN.
There are quite a few fields but you can leave some blank
For some fields there will be a default value,
If you enter '.', the field will be left blank.
-----
Country Name (2 letter code) [AU]:
JP
# country

State or Province Name (full name) [Some-State]:
Hiroshima
 
# state

Locality Name (eg, city) []:
Hiroshima
# city

Organization Name (eg, company) [Internet Widgits Pty Ltd]:
GTS
 
# company

Organizational Unit Name (eg, section) []:
Server World
 
# department

Common Name (eg, YOUR name) []:
www.srv.world
 
# server's FQDN

Email Address []:
xxx@srv.world
# email address
[root@www certs]#
chmod 600 pound.pem
[2] Configure Pound
[root@www ~]#
vi /etc/pound.cfg
# line 21-25: uncomment

ListenHTTPS
  Address 0.0.0.0
  Port 443
  Cert "/etc/pki/tls/certs/pound.pem"
End
[root@www ~]#
/etc/rc.d/init.d/pound restart

Stopping Pound: [ OK ]
Starting Pound: starting...
[ OK ]
[3] Make sure it's possible to access to HTTPS like follows.
 
 
 
Matched Content