commit 1023f5a4d03ecaa74880d01a10420028a52fa60b Author: David Fifield david@bamsoftware.com Date: Sat May 18 19:20:48 2013 -0700
Fix genrsa instructions in facilitator-reg-daemon.
Was already fixed in facilitator-howto.txt. Fuond by Arlo Breault in https://github.com/arlolra/flashproxy/commit/7041f49bae3793470f81766359c5766.... --- facilitator/facilitator-reg-daemon | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/facilitator/facilitator-reg-daemon b/facilitator/facilitator-reg-daemon index e684127..a935650 100755 --- a/facilitator/facilitator-reg-daemon +++ b/facilitator/facilitator-reg-daemon @@ -13,8 +13,8 @@ import fac from M2Crypto import RSA
# Generating an RSA keypair for use by this program: -# openssl genrsa reg-daemon 2048 -# chmod 600 reg-daemon +# openssl genrsa -out /etc/flashproxy/reg-daemon.key 2048 +# chmod 600 /etc/flashproxy/reg-daemon.key
LISTEN_ADDRESS = "127.0.0.1" DEFAULT_LISTEN_PORT = 9003