Secure Swazoo 0.9.57

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

Secure Swazoo 0.9.57

Janko Mivšek
Hi all,

I'm glad to announce that Aleksander and me finally published so called
Secure Swazoo, that is Swazoo with SSL support. I already merged changes
to Swazoo-Core.

INSTALLATION (so far Linux only):

1. load as ususally Swazoo-Core, Swazoo-Visualworks, Swazoo-Tests,
2. load Swazoo-SSL and OpenSSL
3. download openssl-vw-native-0.9.0.tar.gz from
http://sourceforge.net/projects/swazoo
4. put vwssl.so, CAcert.pem and CAkey.pem into directory from where you
start image
5. see README about $LD_LIBRARY_PATH recommendations
6. be sure that OpenSSL is installed on your Linux
7. prepare your sites.cnf to look something like:

    <Site>
         <SiteIdentifier ip: '127.0.0.1' port: 8080 host: 'localhost' >
         <SSLSiteIdentifier ip: '127.0.0.1' port: 8081 host: 'localhost' >
         <CompositeResource uriPattern: '/'>
              <CompositeResource uriPattern: 'foo'>
                <HelloWorldResource uriPattern: 'Howdy'>
              </CompositeResource>
         </CompositeResource>
         <FileResource uriPattern: '/' filePath: '.'>
    </Site>

8. doIt: SiteRegistry configureFrom: 'sites.cnf'
9. in your browser open https://localhost:8081/foo/Howdy

Good luck :)
Janko