~ubuntu-branches/ubuntu/gutsy/stunnel4/gutsy

« back to all changes in this revision

Viewing changes to INSTALL

  • Committer: Bazaar Package Importer
  • Author(s): Julien Lemoine
  • Date: 2004-06-07 21:23:37 UTC
  • Revision ID: james.westby@ubuntu.com-20040607212337-5xh3y0l6jplx3v0y
Tags: upstream-4.050
ImportĀ upstreamĀ versionĀ 4.050

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
stunnel         Universal SSL tunnel
 
2
 
 
3
1. If your machine supports POSIX threads make sure your SSL
 
4
   library is compiled with -DTHREADS.
 
5
 
 
6
2. Compile the software:
 
7
 
 
8
        ./configure
 
9
        make
 
10
        make install
 
11
 
 
12
   (see potential options for 'configure' at the end of this file)
 
13
 
 
14
3. Create stunnel configuration file (stunnel.conf).
 
15
 
 
16
4. Add stunnel invocation to your system's startup files.
 
17
   For SysV-compatible init you can use stunnel.init script.
 
18
 
 
19
     or
 
20
 
 
21
   Modify /etc/services and /etc/inetd.conf, restart inetd (inetd mode).
 
22
 
 
23
   See the manual for details.
 
24
 
 
25
5. There are a variety of compile-time options you may supply when
 
26
   running configure.  Most commonly used are:
 
27
 
 
28
   --with-ssl=DIR
 
29
        where your SSL libraries and include files are installed
 
30
 
 
31
   --with-random=FILE
 
32
        read randomness from FILE for PRNG seeding
 
33
 
 
34
   --with-egd-socket=FILE
 
35
        location of Entropy Gathering Daemon socket, if running EGD
 
36
        (for example on a machine that lacks a /dev/urandom device)
 
37
 
 
38
   Use `./configure --help' to see all the options.
 
39