gitprep / gitprep.conf /
Newer Older
58 lines | 1.705kb
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

            
add ssh_repo_url_base option
Yuki Kimoto authored on 2014-09-24
8
;;; SSH repository url base
9
; For exampke, If you set this value to /git, SSH repository url become
10
; ssh://kimoto@59.106.185.196/git/kimoto/gitprep.git
rename ssh_repo_url_base opt...
Yuki Kimoto authored on 2014-09-24
11
;ssh_rep_url_base=/git
add ssh_repo_url_base option
Yuki Kimoto authored on 2014-09-24
12

            
fixed git_bin not found bug
Yuki Kimoto authored on 2013-03-31
13
;;; Git command path
improved config description
Yuki Kimoto authored on 2013-06-03
14
;;; By default, git command path is automatically detected
15
;;; 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
16
;git_bin=/usr/local/bin/git
17

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

            
add time zone system
Yuki Kimoto authored on 2014-03-08
21
;;; Time Zone
22
;;; GitPrep time zone is GMT by default
23
;;; You can set your local time zone.
24
;time_zone=+9:00
25
;time_zone=+10:30
26
;time_zone=-4:00
27

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

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

            
add show_ignore_space_change...
Yuki Kimoto authored on 2014-12-09
37
;;; Show ignore space change link, default to 0
38
; show_ignore_space_change_link=1
39

            
improved password encrypt sy...
Yuki Kimoto authored on 2013-04-09
40
[admin]
41
;;; If you forget admin password,
42
;;; set this value to 1 and access /reset-password page.
43
;;; Forget to comment out after resetting password.
44
;reset_password=1
fixed git_bin not found bug
Yuki Kimoto authored on 2013-03-31
45

            
cleanup
Yuki Kimoto authored on 2013-05-14
46
[hypnotoad]
improved config description
Yuki Kimoto authored on 2013-06-03
47
;;; Listen URL (default: http://*:10020)
cleanup
Yuki Kimoto authored on 2013-05-14
48
;listen=http://*:10020
49

            
added reverse proxy path_dep...
Yuki Kimoto authored on 2013-04-22
50
[reverse_proxy]
improved config description
Yuki Kimoto authored on 2013-06-03
51
;;; Reverse proxy support (default: 0)
added reverse proxy path_dep...
Yuki Kimoto authored on 2013-04-22
52
;on=1
53

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