config.txt: move instaweb.* to a separate file

Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>

Nguyễn Thái Ngọc Duy committed Oct 27, 2018 at 08:23 UTC cef9b95131cd52b9f04404698f062df2fd8d39f9
2 files changed +21 -20
Documentation/config.txt
+1 -20
@@ -359,26 +359,7 @@ include::config/index.txt[]
359
360 include::config/init.txt[]
361
362 -instaweb.browser::
363 - Specify the program that will be used to browse your working
364 - repository in gitweb. See linkgit:git-instaweb[1].
365 -
366 -instaweb.httpd::
367 - The HTTP daemon command-line to start gitweb on your working
368 - repository. See linkgit:git-instaweb[1].
369 -
370 -instaweb.local::
371 - If true the web server started by linkgit:git-instaweb[1] will
372 - be bound to the local IP (127.0.0.1).
373 -
374 -instaweb.modulePath::
375 - The default module path for linkgit:git-instaweb[1] to use
376 - instead of /usr/lib/apache2/modules. Only used if httpd
377 - is Apache.
378 -
379 -instaweb.port::
380 - The port number to bind the gitweb httpd to. See
381 - linkgit:git-instaweb[1].
362 +include::config/instaweb.txt[]
363
364 interactive.singleKey::
365 In interactive commands, allow the user to provide one-letter
Documentation/config/instaweb.txt new
+20
@@ -0,0 +1,20 @@
1 +instaweb.browser::
2 + Specify the program that will be used to browse your working
3 + repository in gitweb. See linkgit:git-instaweb[1].
4 +
5 +instaweb.httpd::
6 + The HTTP daemon command-line to start gitweb on your working
7 + repository. See linkgit:git-instaweb[1].
8 +
9 +instaweb.local::
10 + If true the web server started by linkgit:git-instaweb[1] will
11 + be bound to the local IP (127.0.0.1).
12 +
13 +instaweb.modulePath::
14 + The default module path for linkgit:git-instaweb[1] to use
15 + instead of /usr/lib/apache2/modules. Only used if httpd
16 + is Apache.
17 +
18 +instaweb.port::
19 + The port number to bind the gitweb httpd to. See
20 + linkgit:git-instaweb[1].