summary refs log tree commit diff
diff options
context:
space:
mode:
authorMatthew Hodgson <matthew@matrix.org>2014-08-21 23:35:45 +0100
committerMatthew Hodgson <matthew@matrix.org>2014-08-21 23:35:45 +0100
commit1b0d4272853ee2187014536de253e47bd318e198 (patch)
tree74d508233e555450b57c1643b9d11ceb4875e8a1
parentactually display room metadata based on m.room.membe events (diff)
downloadsynapse-1b0d4272853ee2187014536de253e47bd318e198.tar.xz
host a webclient by default
-rwxr-xr-xsynapse/app/homeserver.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/synapse/app/homeserver.py b/synapse/app/homeserver.py
index ca102236cf..6b39da4a7d 100755
--- a/synapse/app/homeserver.py
+++ b/synapse/app/homeserver.py
@@ -235,8 +235,8 @@ def setup():
     parser.add_argument('--pid-file', dest="pid", help="When running as a "
                         "daemon, the file to store the pid in",
                         default="hs.pid")
-    parser.add_argument("-w", "--webclient", dest="webclient",
-                        action="store_true", help="Host the web client.")
+    parser.add_argument("-W", "--webclient", dest="webclient", default=True,
+                        action="store_false", help="Don't host a web client.")
     args = parser.parse_args()
 
     verbosity = int(args.verbose) if args.verbose else None