REDIRECT_RAW_INFO -> RAW_INFO_PAGE

This commit is contained in:
6543 2021-12-04 21:15:51 +01:00
parent 38426c26db
commit 5b2e91a37a
No known key found for this signature in database
GPG Key ID: C99B82E40B027BAE
2 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,7 @@
- `RAW_DOMAIN` (default: `raw.codeberg.org`): domain for raw resources.
- `GITEA_ROOT` (default: `https://codeberg.org`): root of the upstream Gitea instance.
- `GITEA_API_TOKEN` (default: empty): API token for the Gitea instance to access non-public (e.g. limited) repos.
- `REDIRECT_RAW_INFO` (default: https://docs.codeberg.org/pages/raw-content/): info page for raw resources, shown if no resource is provided.
- `RAW_INFO_PAGE` (default: https://docs.codeberg.org/pages/raw-content/): info page for raw resources, shown if no resource is provided.
- `ACME_API` (default: https://acme-v02.api.letsencrypt.org/directory): set this to https://acme.mock.director to use invalid certificates without any verification (great for debugging).
ZeroSSL might be better in the future as it doesn't have rate limits and doesn't clash with the official Codeberg certificates (which are using Let's Encrypt), but I couldn't get it to work yet.
- `ACME_EMAIL` (default: `noreply@example.email`): Set this to "true" to accept the Terms of Service of your ACME provider.

View File

@ -41,7 +41,7 @@ var ServeFlags = []cli.Flag{
&cli.StringFlag{
Name: "raw-info-page",
Usage: "will be shown (with a redirect) when trying to access $RAW_DOMAIN directly (or without owner/repo/path)",
EnvVars: []string{"REDIRECT_RAW_INFO"},
EnvVars: []string{"RAW_INFO_PAGE"},
Value: "https://docs.codeberg.org/pages/raw-content/",
},