You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: codersdk/deployment.go
+9-9
Original file line number
Diff line number
Diff line change
@@ -594,7 +594,7 @@ type ExternalAuthConfig struct {
594
594
// a string (e.g. coder.com) instead of by it's type.
595
595
//
596
596
// Git clone makes use of this by parsing the URL from:
597
-
// 'Username for <https://github.com>:'
597
+
// 'Username for https://github.com:'
598
598
// And sending it to the Coder server to match against the Regex.
599
599
Regexstring`json:"regex" yaml:"regex"`
600
600
// DisplayName is shown in the UI to identify the auth config.
@@ -1174,7 +1174,7 @@ when required by your organization's security policy.`,
1174
1174
Flag: "wildcard-access-url",
1175
1175
Env: "CODER_WILDCARD_ACCESS_URL",
1176
1176
// Do not use a serpent.URL here. We are intentionally omitting the
1177
-
// scheme part of the url <https://>, so the standard url parsing
1177
+
// scheme part of the url https://, so the standard url parsing
1178
1178
// will yield unexpected results.
1179
1179
//
1180
1180
// We have a validation function to ensure the wildcard url is correct,
@@ -1339,7 +1339,7 @@ when required by your organization's security policy.`,
1339
1339
},
1340
1340
{
1341
1341
Name: "TLS Ciphers",
1342
-
Description: "Specify specific TLS ciphers that allowed to be used. See <https://github.com/golang/go/blob/master/src/crypto/tls/cipher_suites.go#L53-L75>.",
1342
+
Description: "Specify specific TLS ciphers that allowed to be used. See https://github.com/golang/go/blob/master/src/crypto/tls/cipher_suites.go#L53-L75.",
1343
1343
Flag: "tls-ciphers",
1344
1344
Env: "CODER_TLS_CIPHERS",
1345
1345
Default: "",
@@ -1350,7 +1350,7 @@ when required by your organization's security policy.`,
1350
1350
},
1351
1351
{
1352
1352
Name: "TLS Allow Insecure Ciphers",
1353
-
Description: "By default, only ciphers marked as 'secure' are allowed to be used. See <https://github.com/golang/go/blob/master/src/crypto/tls/cipher_suites.go#L82-L95>.",
1353
+
Description: "By default, only ciphers marked as 'secure' are allowed to be used. See https://github.com/golang/go/blob/master/src/crypto/tls/cipher_suites.go#L82-L95.",
1354
1354
Flag: "tls-allow-insecure-ciphers",
1355
1355
Env: "CODER_TLS_ALLOW_INSECURE_CIPHERS",
1356
1356
Default: "false",
@@ -1452,7 +1452,7 @@ when required by your organization's security policy.`,
1452
1452
},
1453
1453
{
1454
1454
Name: "DERP Config URL",
1455
-
Description: "URL to fetch a DERP mapping on startup. See: <https://tailscale.com/kb/1118/custom-derp-servers/>.",
1455
+
Description: "URL to fetch a DERP mapping on startup. See: https://tailscale.com/kb/1118/custom-derp-servers/.",
1456
1456
Flag: "derp-config-url",
1457
1457
Env: "CODER_DERP_CONFIG_URL",
1458
1458
Value: &c.DERP.Config.URL,
@@ -1461,7 +1461,7 @@ when required by your organization's security policy.`,
1461
1461
},
1462
1462
{
1463
1463
Name: "DERP Config Path",
1464
-
Description: "Path to read a DERP mapping from. See: <https://tailscale.com/kb/1118/custom-derp-servers/>.",
1464
+
Description: "Path to read a DERP mapping from. See: https://tailscale.com/kb/1118/custom-derp-servers/.",
1465
1465
Flag: "derp-config-path",
1466
1466
Env: "CODER_DERP_CONFIG_PATH",
1467
1467
Value: &c.DERP.Config.Path,
@@ -1945,7 +1945,7 @@ when required by your organization's security policy.`,
1945
1945
// Trace settings
1946
1946
{
1947
1947
Name: "Trace Enable",
1948
-
Description: "Whether application tracing data is collected. It exports to a backend configured by environment variables. See: <https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/protocol/exporter.md>.",
1948
+
Description: "Whether application tracing data is collected. It exports to a backend configured by environment variables. See: https://github.com/open-telemetry/opentelemetry-specification/blob/main/specification/protocol/exporter.md.",
1949
1949
Flag: "trace",
1950
1950
Env: "CODER_TRACE_ENABLE",
1951
1951
Value: &c.Trace.Enable,
@@ -2284,7 +2284,7 @@ when required by your organization's security policy.`,
2284
2284
},
2285
2285
{
2286
2286
Name: "Postgres Connection URL",
2287
-
Description: "URL of a PostgreSQL database. If empty, PostgreSQL binaries will be downloaded from Maven <https://repo1.maven.org/maven2> and store all data in the config root. Access the built-in database with \"coder server postgres-builtin-url\". Note that any special characters in the URL must be URL-encoded.",
2287
+
Description: "URL of a PostgreSQL database. If empty, PostgreSQL binaries will be downloaded from Maven https://repo1.maven.org/maven2 and store all data in the config root. Access the built-in database with \"coder server postgres-builtin-url\". Note that any special characters in the URL must be URL-encoded.",
@@ -2530,7 +2530,7 @@ Write out the current server config as YAML to stdout.`,
2530
2530
},
2531
2531
{
2532
2532
Name: "Custom wgtunnel Host",
2533
-
Description: "Hostname of HTTPS server that runs <https://github.com/coder/wgtunnel>. By default, this will pick the best available wgtunnel server hosted by Coder. e.g. <tunnel.example.com>.",
2533
+
Description: "Hostname of HTTPS server that runs https://github.com/coder/wgtunnel. By default, this will pick the best available wgtunnel server hosted by Coder. e.g. tunnel.example.com.",
0 commit comments