mirror of
https://github.com/daylinmorgan/git-server.git
synced 2024-11-14 16:17:53 -06:00
add notes about ini
This commit is contained in:
parent
3a7bbb101d
commit
f9e3b84aa2
2 changed files with 26 additions and 1 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -2,6 +2,5 @@ gitea/*
|
||||||
!gitea/gitea/
|
!gitea/gitea/
|
||||||
|
|
||||||
gitea/gitea/*
|
gitea/gitea/*
|
||||||
!gitea/gitea/conf/
|
|
||||||
!gitea/gitea/templates/
|
!gitea/gitea/templates/
|
||||||
!gitea/gitea/public/
|
!gitea/gitea/public/
|
||||||
|
|
26
README.md
26
README.md
|
@ -1 +1,27 @@
|
||||||
# Server Config
|
# Server Config
|
||||||
|
|
||||||
|
|
||||||
|
Important Changes to `app.ini`
|
||||||
|
|
||||||
|
```dosini
|
||||||
|
APP_NAME = Daylin's Git Server
|
||||||
|
RUN_MODE = prod
|
||||||
|
RUN_USER = git
|
||||||
|
|
||||||
|
[server]
|
||||||
|
DOMAIN = https://git.dayl.in
|
||||||
|
SSH_DOMAIN = git.dayl.in
|
||||||
|
ROOT_URL = https://git.dayl.in/
|
||||||
|
|
||||||
|
[service]
|
||||||
|
DISABLE_REGISTRATION = true
|
||||||
|
NO_REPLY_ADDRESS = noreply.git.dayl.in
|
||||||
|
|
||||||
|
[ui]
|
||||||
|
DEFAULT_THEME = arc-green
|
||||||
|
THEMES = auto,gitea,arc-green
|
||||||
|
|
||||||
|
[openid]
|
||||||
|
ENABLE_OPENID_SIGNIN = false
|
||||||
|
ENABLE_OPENID_SIGNUP = false
|
||||||
|
```
|
||||||
|
|
Loading…
Reference in a new issue