mirror of
https://git.freebsd.org/ports.git
synced 2025-07-15 00:09:15 -04:00
Open, free and uncensorable websites, using Bitcoin cryptography and BitTorrent network. Features: * Real-time updated sites * Namecoin .bit domains support * Easy to setup: unpack & run * Clone websites in one click * Password-less BIP32 based authorization: Your account is protected by the same cryptography as your Bitcoin wallet * Built-in SQL server with P2P data synchronization: Allows easier site development and faster page load times * Anonymity: Full Tor network support with .onion hidden services instead of IPv4 addresses * TLS encrypted connections * Automatic uPnP port opening * Plugin for multiuser (openproxy) support * Works with any browser/OS WWW: https://zeronet.io/ PR: 209735 Submitted by: Yuri Victorovich <yuri@rawbw.com>
18 lines
880 B
Python
18 lines
880 B
Python
--- src/Ui/UiServer.py.orig 2016-06-11 08:29:47 UTC
|
|
+++ src/Ui/UiServer.py
|
|
@@ -107,7 +107,7 @@ class UiServer:
|
|
from werkzeug.debug import DebuggedApplication
|
|
handler = DebuggedApplication(self.handleRequest, evalex=True)
|
|
except Exception, err:
|
|
- self.log.info("%s: For debugging please download Werkzeug (http://werkzeug.pocoo.org/)" % err)
|
|
+ self.log.info("%s: For debugging please enable the port option: DEBUG=on" % err)
|
|
from Debug import DebugReloader
|
|
self.log.write = lambda msg: self.log.debug(msg.strip()) # For Wsgi access.log
|
|
self.log.info("--------------------------------------")
|
|
@@ -155,4 +155,4 @@ class UiServer:
|
|
|
|
self.server.socket.close()
|
|
self.server.stop()
|
|
- time.sleep(1)
|
|
\ No newline at end of file
|
|
+ time.sleep(1)
|