forked from yuki-kimoto/gitprep
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgitprep.conf.example
More file actions
64 lines (51 loc) · 1.89 KB
/
gitprep.conf.example
File metadata and controls
64 lines (51 loc) · 1.89 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
;;; GitPrep configuration file
[basic]
;;; SSH port (default: 22)
;;; This value is used by ssh git repository URL.
; ssh_port=55555
;;; SSH repository url base
;;; For exampke, If you set this value to /~/git, SSH repository url become
;;; ssh://kimoto@59.106.185.196/~/git/kimoto/gitprep.git
;;; ~ is expaned to user home directory automatically
; ssh_rep_url_base=/~/git
;;; Git command path
;;; By default, git command path is automatically detected
;;; from PATH enviroment variable or /usr/bin/git or /usr/local/bin/git
; git_bin=/usr/local/bin/git
;;; Tags limit (default:1000)
; tags_limit=1000
;;; Time Zone
;;; GitPrep time zone is GMT by default
;;; You can set your local time zone.
; time_zone=+9:00
; time_zone=+10:30
; time_zone=-4:00
;;; authorized_keys file for public key authentication via ssh.
;;; default is "$ENV{HOME}/.ssh/authorized_keys"
; authorized_keys_file=/home/gitprep/.ssh/authorized_keys
;;; hide all repositories until user logs in (default: 0)
; hide_from_public=1
;;; show emails in the public user profile; default is don't show
show_emails=1
;;; log files
; mojo_log_file_path=/home/gitgui/gitprep/log/production.log
; access_log_file_path=/home/gitgui/gitprep/log/access.log
[templates]
;;; put here custom templates overriding the defaults provided by gitprep; requires full path
; custom_template_folder=/home/gitprep/gitprep/templates_custom
[admin]
;;; If you forget admin password,
;;; set this value to 1 and access /reset-password page.
;;; Forget to comment out after resetting password.
; reset_password=1
[hypnotoad]
;;; Listen URL (default: http://*:10020)
listen=http://127.0.0.1:10020
[reverse_proxy]
;;; Reverse proxy support (default: 0)
; on=1
;;; Reverse proxy path depth (default: none)
;;; If proxy path is http://somehost.com/foo, you set path_depth to 1.
;;; If proxy path is http://somehost.com/foo/bar, you set path_depth to 2.
; path_depth=1
; path_depth=2