gitprep / gitprep.conf /
Newer Older
51 lines | 1.443kb
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
improve the way to hide user...
Yuki Kimoto authored on 2016-09-08
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
11
; ~ is exapned to user home directory automatically
12
;ssh_rep_url_base=/~/git
add ssh_repo_url_base option
Yuki Kimoto authored on 2014-09-24
13

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

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

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

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

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

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

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

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