summaryrefslogtreecommitdiffstats
path: root/conf
diff options
context:
space:
mode:
authorUnknown <joe2010xtmf@163.com>2014-04-20 20:52:00 -0400
committerUnknown <joe2010xtmf@163.com>2014-04-20 20:52:00 -0400
commit006c45e21d5f37c5bcfb92ead1110272dee0d88d (patch)
tree6bec58d32d4e3baa2e62b1a930976019d61c68e2 /conf
parente55d1ea3d6d5b927e44baebd801a5c650859991c (diff)
downloadgitea-006c45e21d5f37c5bcfb92ead1110272dee0d88d.tar.gz
gitea-006c45e21d5f37c5bcfb92ead1110272dee0d88d.zip
Mirror change
Diffstat (limited to 'conf')
-rw-r--r--conf/app.ini7
1 files changed, 5 insertions, 2 deletions
diff --git a/conf/app.ini b/conf/app.ini
index ca0bfa84d9..2aab7178e4 100644
--- a/conf/app.ini
+++ b/conf/app.ini
@@ -18,8 +18,11 @@ DOMAIN = localhost
ROOT_URL = %(PROTOCOL)s://%(DOMAIN)s:%(HTTP_PORT)s/
HTTP_ADDR =
HTTP_PORT = 3000
-CERT_FILE = cert.pem
-KEY_FILE = key.pem
+; Generate steps:
+; $ cd path/to/gogs/custom/https
+; $ go run $GOROOT/src/pkg/crypto/tls/generate_cert.go -ca=true -duration=8760h0m0s -host=myhost.example.com
+CERT_FILE = custom/https/cert.pem
+KEY_FILE = custom/https/key.pem
[database]
; Either "mysql", "postgres" or "sqlite3", it's your choice