From 1845661c9b8422ae2f8a37cf8e284fcfccc78454 Mon Sep 17 00:00:00 2001 From: Tjark Saul Date: Thu, 7 May 2015 15:38:54 +0200 Subject: [PATCH] Changed bind address to localhost to allow IPv6 connections --- bin/djsd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/djsd b/bin/djsd index 43cf413..5a16e98 100755 --- a/bin/djsd +++ b/bin/djsd @@ -61,7 +61,7 @@ ssl_cert = ssl_info.scan(/(-----BEGIN CERTIFICATE-----.+?-----END CERTIFICATE--- ssl_key = ssl_info.scan(/(-----BEGIN RSA PRIVATE KEY-----.+?-----END RSA PRIVATE KEY-----)/m)[0][0] server_options = { - :BindAddress => "127.0.0.1", + :BindAddress => "localhost", :Port => 3131, :AccessLog => [], :SSLEnable => true,