2021-12-03 01:12:51 +00:00
|
|
|
package cmd
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/urfave/cli/v2"
|
|
|
|
)
|
|
|
|
|
|
|
|
var ServeFlags = []cli.Flag{
|
|
|
|
// MainDomainSuffix specifies the main domain (starting with a dot) for which subdomains shall be served as static
|
|
|
|
// pages, or used for comparison in CNAME lookups. Static pages can be accessed through
|
|
|
|
// https://{owner}.{MainDomain}[/{repo}], with repo defaulting to "pages".
|
2021-12-03 02:05:38 +00:00
|
|
|
&cli.StringFlag{
|
2021-12-04 20:17:52 +00:00
|
|
|
Name: "pages-domain",
|
2021-12-03 02:05:38 +00:00
|
|
|
Usage: "specifies the main domain (starting with a dot) for which subdomains shall be served as static pages",
|
|
|
|
EnvVars: []string{"PAGES_DOMAIN"},
|
|
|
|
Value: "codeberg.page",
|
|
|
|
},
|
|
|
|
// GiteaRoot specifies the root URL of the Gitea instance, without a trailing slash.
|
|
|
|
&cli.StringFlag{
|
|
|
|
Name: "gitea-root",
|
|
|
|
Usage: "specifies the root URL of the Gitea instance, without a trailing slash.",
|
|
|
|
EnvVars: []string{"GITEA_ROOT"},
|
|
|
|
Value: "https://codeberg.org",
|
|
|
|
},
|
|
|
|
// GiteaApiToken specifies an api token for the Gitea instance
|
|
|
|
&cli.StringFlag{
|
|
|
|
Name: "gitea-api-token",
|
|
|
|
Usage: "specifies an api token for the Gitea instance",
|
|
|
|
EnvVars: []string{"GITEA_API_TOKEN"},
|
|
|
|
Value: "",
|
|
|
|
},
|
|
|
|
// RawDomain specifies the domain from which raw repository content shall be served in the following format:
|
|
|
|
// https://{RawDomain}/{owner}/{repo}[/{branch|tag|commit}/{version}]/{filepath...}
|
|
|
|
// (set to []byte(nil) to disable raw content hosting)
|
|
|
|
&cli.StringFlag{
|
|
|
|
Name: "raw-domain",
|
|
|
|
Usage: "specifies the domain from which raw repository content shall be served, not set disable raw content hosting",
|
|
|
|
EnvVars: []string{"RAW_DOMAIN"},
|
2021-12-10 13:31:58 +00:00
|
|
|
Value: "raw.codeberg.page",
|
2021-12-03 02:05:38 +00:00
|
|
|
},
|
|
|
|
// RawInfoPage will be shown (with a redirect) when trying to access RawDomain directly (or without owner/repo/path).
|
|
|
|
&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)",
|
2021-12-04 20:15:51 +00:00
|
|
|
EnvVars: []string{"RAW_INFO_PAGE"},
|
2021-12-10 13:31:58 +00:00
|
|
|
Value: "https://docs.codeberg.org/codeberg-pages/raw-content/",
|
2021-12-03 02:05:38 +00:00
|
|
|
},
|
|
|
|
|
2021-12-03 02:34:50 +00:00
|
|
|
// Server
|
2021-12-03 02:05:38 +00:00
|
|
|
&cli.StringFlag{
|
|
|
|
Name: "host",
|
|
|
|
Usage: "specifies host of listening address",
|
|
|
|
EnvVars: []string{"HOST"},
|
|
|
|
Value: "[::]",
|
|
|
|
},
|
|
|
|
&cli.StringFlag{
|
|
|
|
Name: "port",
|
|
|
|
Usage: "specifies port of listening address",
|
|
|
|
EnvVars: []string{"PORT"},
|
|
|
|
Value: "443",
|
|
|
|
},
|
2021-12-03 02:34:50 +00:00
|
|
|
&cli.BoolFlag{
|
|
|
|
Name: "enable-http-server",
|
|
|
|
// TODO: desc
|
|
|
|
EnvVars: []string{"ENABLE_HTTP_SERVER"},
|
|
|
|
},
|
2022-08-12 04:40:12 +00:00
|
|
|
// Server Options
|
|
|
|
&cli.BoolFlag{
|
|
|
|
Name: "enable-lfs-support",
|
|
|
|
Usage: "enable lfs support, require gitea v1.17.0 as backend",
|
|
|
|
EnvVars: []string{"ENABLE_LFS_SUPPORT"},
|
|
|
|
Value: true,
|
|
|
|
},
|
|
|
|
&cli.BoolFlag{
|
|
|
|
Name: "enable-symlink-support",
|
|
|
|
Usage: "follow symlinks if enabled, require gitea v1.18.0 as backend",
|
|
|
|
EnvVars: []string{"ENABLE_SYMLINK_SUPPORT"},
|
|
|
|
Value: true,
|
|
|
|
},
|
2022-08-12 03:06:26 +00:00
|
|
|
&cli.StringFlag{
|
|
|
|
Name: "log-level",
|
|
|
|
Value: "warn",
|
|
|
|
Usage: "specify at which log level should be logged. Possible options: info, warn, error, fatal",
|
|
|
|
EnvVars: []string{"LOG_LEVEL"},
|
|
|
|
},
|
2021-12-03 02:05:38 +00:00
|
|
|
|
2021-12-03 02:34:50 +00:00
|
|
|
// ACME
|
2021-12-03 02:05:38 +00:00
|
|
|
&cli.StringFlag{
|
2021-12-04 20:21:27 +00:00
|
|
|
Name: "acme-api-endpoint",
|
2021-12-03 02:05:38 +00:00
|
|
|
EnvVars: []string{"ACME_API"},
|
|
|
|
Value: "https://acme-v02.api.letsencrypt.org/directory",
|
|
|
|
},
|
|
|
|
&cli.StringFlag{
|
|
|
|
Name: "acme-email",
|
|
|
|
EnvVars: []string{"ACME_EMAIL"},
|
|
|
|
Value: "noreply@example.email",
|
2021-12-03 01:12:51 +00:00
|
|
|
},
|
2021-12-03 02:34:50 +00:00
|
|
|
&cli.BoolFlag{
|
|
|
|
Name: "acme-use-rate-limits",
|
|
|
|
// TODO: Usage
|
|
|
|
EnvVars: []string{"ACME_USE_RATE_LIMITS"},
|
|
|
|
Value: true,
|
|
|
|
},
|
|
|
|
&cli.BoolFlag{
|
|
|
|
Name: "acme-accept-terms",
|
|
|
|
// TODO: Usage
|
|
|
|
EnvVars: []string{"ACME_ACCEPT_TERMS"},
|
|
|
|
},
|
|
|
|
&cli.StringFlag{
|
|
|
|
Name: "acme-eab-kid",
|
|
|
|
// TODO: Usage
|
|
|
|
EnvVars: []string{"ACME_EAB_KID"},
|
|
|
|
},
|
|
|
|
&cli.StringFlag{
|
|
|
|
Name: "acme-eab-hmac",
|
|
|
|
// TODO: Usage
|
|
|
|
EnvVars: []string{"ACME_EAB_HMAC"},
|
|
|
|
},
|
|
|
|
&cli.StringFlag{
|
|
|
|
Name: "dns-provider",
|
|
|
|
// TODO: Usage
|
|
|
|
EnvVars: []string{"DNS_PROVIDER"},
|
|
|
|
},
|
2021-12-03 01:12:51 +00:00
|
|
|
}
|