#!/bin/sh # publicfile-httpsd/run # daemontools service for publicfile httpd w/ ssl # wcm, 2004.02.03 - 2004.02.03 # === CONLIMIT=71 HTTPS_ARCHIVE="/var/public/https" exec 2>&1 echo "*** Starting publicfile-httpd (w/ ssl) on ${HTTPS_ARCHIVE}:" exec envdir ./env envuidgid publicfile softlimit -o20 -d500000 \ sslserver -vDRH -l0 -b50 \ -c ${CONLIMIT} \ 0 443 \ /usr/local/publicfile/bin/httpd ${HTTPS_ARCHIVE} ### that's all, folks!