From: Brian Warner <warner@allmydata.com>
Date: Thu, 30 Oct 2008 00:13:36 +0000 (-0700)
Subject: create_node.py: add 'web.static = public_html' to the initial tahoe.cfg
X-Git-Url: https://git.rkrishnan.org/specifications/vdrive/global?a=commitdiff_plain;h=6a7d5b893b1b4df8ea670fe2982a67ee1027fa32;p=tahoe-lafs%2Ftahoe-lafs.git

create_node.py: add 'web.static = public_html' to the initial tahoe.cfg
---

diff --git a/src/allmydata/scripts/create_node.py b/src/allmydata/scripts/create_node.py
index 7ef66b95..b1e15364 100644
--- a/src/allmydata/scripts/create_node.py
+++ b/src/allmydata/scripts/create_node.py
@@ -64,6 +64,7 @@ def write_node_config(c, config):
     if webport.lower() == "none":
         webport = ""
     c.write("web.port = %s\n" % webport)
+    c.write("web.static = public_html\n")
     c.write("#tub.port =\n")
     c.write("#advertised_ip_addresses =\n")
     c.write("#log_gatherer.furl =\n")