diff --git a/synapse/config/_base.py b/synapse/config/_base.py
index c4d3087fa48f57f56af0d76089ac3b0386dd228e..5613f38e4d6f2f9caa2bb5e05cf73f753a15abed 100644
--- a/synapse/config/_base.py
+++ b/synapse/config/_base.py
@@ -214,14 +214,20 @@ class Config(object):
             " Defaults to the directory containing the last config file",
         )
 
+        obj = cls()
+
+        obj.invoke_all("add_arguments", config_parser)
+
         config_args = config_parser.parse_args(argv)
 
         config_files = find_config_files(search_paths=config_args.config_path)
 
-        obj = cls()
         obj.read_config_files(
             config_files, keys_directory=config_args.keys_directory, generate_keys=False
         )
+
+        obj.invoke_all("read_arguments", config_args)
+
         return obj
 
     @classmethod
diff --git a/synapse/config/workers.py b/synapse/config/workers.py
index 80baf0ce0e2b49936802ee3f3212b84e100d8b19..8dc013d0e8816fe0581711bf6dae7fef11e1a25e 100644
--- a/synapse/config/workers.py
+++ b/synapse/config/workers.py
@@ -57,3 +57,7 @@ class WorkerConfig(Config):
                     bind_addresses.append(bind_address)
                 elif not bind_addresses:
                     bind_addresses.append('')
+
+    def read_arguments(self, args):
+        if args.daemonize is not None:
+            self.worker_daemonize = args.daemonize