diff --git a/.gitignore b/.gitignore index 23ba8568c..819306a87 100644 --- a/.gitignore +++ b/.gitignore @@ -17,3 +17,9 @@ lbrynet.egg-info/PKG-INFO /build /dist + +*.so + +*.pem + +*.decTest diff --git a/lbrynet/lbrynet_daemon/LBRYDaemon.py b/lbrynet/lbrynet_daemon/LBRYDaemon.py index 0422c47c3..0a049b3f1 100644 --- a/lbrynet/lbrynet_daemon/LBRYDaemon.py +++ b/lbrynet/lbrynet_daemon/LBRYDaemon.py @@ -1093,7 +1093,7 @@ def main(): daemon = LBRYDaemon() daemon.setup(args.wallet, args.update) - reactor.listenTCP(7080, server.Site(daemon)) + reactor.listenTCP(7080, server.Site(daemon), interface='localhost') reactor.run() if __name__ == '__main__':