diff options
author | 8ctopus <13252042+8ctopus@users.noreply.github.com> | 2019-10-04 05:54:05 +0500 |
---|---|---|
committer | Lunny Xiao <xiaolunwen@gmail.com> | 2019-10-04 08:54:05 +0800 |
commit | 6ea77523bbda75255e04bb5befafe24f5279ab5e (patch) | |
tree | 3893aecd8b6787898fe9d09cf6f67ade949ec1c6 /docs/content/doc/usage/https-support.md | |
parent | 9543aeaf84cae7ce3700133ff048536471c543aa (diff) | |
download | gitea-6ea77523bbda75255e04bb5befafe24f5279ab5e.tar.gz gitea-6ea77523bbda75255e04bb5befafe24f5279ab5e.zip |
Cleanup https support code snippet (#8370)
Diffstat (limited to 'docs/content/doc/usage/https-support.md')
-rw-r--r-- | docs/content/doc/usage/https-support.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/content/doc/usage/https-support.md b/docs/content/doc/usage/https-support.md index 5e1f4be56e..22cbc684aa 100644 --- a/docs/content/doc/usage/https-support.md +++ b/docs/content/doc/usage/https-support.md @@ -24,11 +24,11 @@ To use Gitea's built-in HTTPS support, you must change your `app.ini` file: ```ini [server] -PROTOCOL=https -ROOT_URL = `https://git.example.com:3000/` +PROTOCOL = https +ROOT_URL = https://git.example.com:3000/ HTTP_PORT = 3000 CERT_FILE = cert.pem -KEY_FILE = key.pem +KEY_FILE = key.pem ``` To learn more about the config values, please checkout the [Config Cheat Sheet](../config-cheat-sheet#server). |