gitprep / gitprep.conf /
Newer Older
50 lines | 1.445kb
improved config description
Yuki Kimoto authored on 2013-06-03
1
;;; GitPrep configuration file
2

            
update Mojolicious and added...
Yuki Kimoto authored on 2013-03-20
3
[basic]
improved config description
Yuki Kimoto authored on 2013-06-03
4
;;; SSH port (default: 22)
5
;;; This value is used by ssh git repository URL.
update Mojolicious and added...
Yuki Kimoto authored on 2013-03-20
6
;ssh_port=55555
7

            
fixed git_bin not found bug
Yuki Kimoto authored on 2013-03-31
8
;;; Git command path
improved config description
Yuki Kimoto authored on 2013-06-03
9
;;; By default, git command path is automatically detected
10
;;; from PATH enviroment variable or /usr/bin/git or /usr/local/bin/git
fixed git_bin not found bug
Yuki Kimoto authored on 2013-03-31
11
;git_bin=/usr/local/bin/git
12

            
improved config description
Yuki Kimoto authored on 2013-06-03
13
;;; Tags limit (default:1000)
improved tag page design
Yuki Kimoto authored on 2013-05-01
14
;tags_limit=1000
15

            
add time zone system
Yuki Kimoto authored on 2014-03-08
16
;;; Time Zone
17
;;; GitPrep time zone is GMT by default
18
;;; You can set your local time zone.
19
;time_zone=+9:00
20
;time_zone=+10:30
21
;time_zone=-4:00
22

            
Supported specific character...
Tetsuya Hayashi authored on 2014-03-15
23
;;; Suspects encoding list for source code character encoding (default:UTF-8)
24
;;; set comma separated encoding list if your source code is different from UTF-8.
25
;;; encoding name follow Perl encoding API.
add encoding_suspects test
Yuki Kimoto authored on 2014-03-17
26
;encoding_suspects=cp932,UTF-8
Supported specific character...
Tetsuya Hayashi authored on 2014-03-15
27

            
add key delete feature and u...
gitprep authored on 2014-05-19
28
;;; authorized_keys file for public key authentication via ssh.
29
;;; default is "$ENV{HOME}/.ssh/authorized_keys"
30
; authorized_keys_file=/home/gitprep/.ssh/authorized_keys
31

            
improved password encrypt sy...
Yuki Kimoto authored on 2013-04-09
32
[admin]
33
;;; If you forget admin password,
34
;;; set this value to 1 and access /reset-password page.
35
;;; Forget to comment out after resetting password.
36
;reset_password=1
fixed git_bin not found bug
Yuki Kimoto authored on 2013-03-31
37

            
cleanup
Yuki Kimoto authored on 2013-05-14
38
[hypnotoad]
improved config description
Yuki Kimoto authored on 2013-06-03
39
;;; Listen URL (default: http://*:10020)
cleanup
Yuki Kimoto authored on 2013-05-14
40
;listen=http://*:10020
41

            
added reverse proxy path_dep...
Yuki Kimoto authored on 2013-04-22
42
[reverse_proxy]
improved config description
Yuki Kimoto authored on 2013-06-03
43
;;; Reverse proxy support (default: 0)
added reverse proxy path_dep...
Yuki Kimoto authored on 2013-04-22
44
;on=1
45

            
improved config description
Yuki Kimoto authored on 2013-06-03
46
;;; Reverse proxy path depth (default: none)
added reverse proxy path_dep...
Yuki Kimoto authored on 2013-04-22
47
;;; If proxy path is http://somehost.com/foo, you set path_depth to 1.
48
;;; If proxy path is http://somehost.com/foo/bar, you set path_depth to 2.
49
;path_depth=1
50
;path_depth=2