From 6f99580f8ad220333d5f940b20091d97f04dfa52 Mon Sep 17 00:00:00 2001 From: Sunil Mohan Adapa Date: Sat, 4 Jun 2016 07:50:13 +0530 Subject: [PATCH] config: Update dev configuration default url path I find that I am almost always during development runs using ./run --debug --no-daemon --server_dir=/plinth . The daemon part is gone due to recent changes. But without specifying --server_dir it will run on / and since it is not the same as production run, it change this to /plinth. I am assuming this also the case with other people. So, change the default to /plinth. I believe this reduces the entry to development barrier by a tiny bit. --- plinth.config | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plinth.config b/plinth.config index 44c9d1a3b..4efb0ac45 100644 --- a/plinth.config +++ b/plinth.config @@ -4,7 +4,7 @@ file_root = %(root)s config_dir = %(file_root)s/data/etc/plinth data_dir = %(file_root)s/data/var/lib/plinth log_dir = %(file_root)s/data/var/log/plinth -server_dir = / +server_dir = /plinth actions_dir = %(file_root)s/actions doc_dir = %(file_root)s/doc