Showing 1 changed files with 12 additions and 7 deletions
+12 -7
gitprep.conf
... ...
@@ -1,17 +1,22 @@
1
+;;; GitPrep configuration file
2
+
1 3
 [basic]
2
-;;; SSH port
4
+;;; SSH port (default: 22)
5
+;;; This value is used by ssh git repository URL.
3 6
 ;ssh_port=55555
4 7
 
5 8
 ;;; Git command path
9
+;;; By default, git command path is automatically detected
10
+;;; from PATH enviroment variable or /usr/bin/git or /usr/local/bin/git
6 11
 ;git_bin=/usr/local/bin/git
7 12
 
8
-;;; Tags limit
13
+;;; Tags limit (default:1000)
9 14
 ;tags_limit=1000
10 15
 
11 16
 ;;; Prevent XSS
12 17
 ;;; If prevent_xss is set to 1,
13
-;;; raw content exept text, png, gif, jpeg image,
14
-;;; file is donwloaded, not displayed.
18
+;;; binary file except png, gif, jpeg
19
+;;; is downloaded, not displayed.
15 20
 ;prevent_xss=1
16 21
 
17 22
 [admin]
... ...
@@ -21,14 +26,14 @@
21 26
 ;reset_password=1
22 27
 
23 28
 [hypnotoad]
24
-;;; Listen URL
29
+;;; Listen URL (default: http://*:10020)
25 30
 ;listen=http://*:10020
26 31
 
27 32
 [reverse_proxy]
28
-;;; Reverse proxy support
33
+;;; Reverse proxy support (default: 0)
29 34
 ;on=1
30 35
 
31
-;;; Reverse proxy path depth
36
+;;; Reverse proxy path depth (default: none)
32 37
 ;;; If proxy path is http://somehost.com/foo, you set path_depth to 1.
33 38
 ;;; If proxy path is http://somehost.com/foo/bar, you set path_depth to 2.
34 39
 ;path_depth=1