-
Notifications
You must be signed in to change notification settings - Fork 111
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
90 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,28 @@ | ||
CANARY_DOMAINS=localhost | ||
CANARY_NXDOMAINS=yourdomain.com | ||
CANARY_PUBLIC_IP= | ||
# Required Settings | ||
CANARY_PUBLIC_IP= #str | ||
CANARY_DOMAINS=yourdomain.com #list[str] | ||
CANARY_NXDOMAINS=nx.yourdomain.com #list[str] | ||
LOG_FILE=frontend.log #str | ||
|
||
#CANARY_GOOGLE_API_KEY= | ||
# Optional Settings (these have sane defaults) | ||
#CANARY_API_APP_TITLE=Canarytokens #str | ||
#CANARY_SENTRY_DSN= #HttpUrl | ||
#CANARY_SENTRY_ENVIRONMENT= # ["prod", "staging", "dev", "ci", "local"] | ||
#CANARY_SENTRY_ENABLE= # bool | ||
|
||
CANARY_WEB_IMAGE_UPLOAD_PATH=/uploads | ||
#Enter number so 1024*1024*10 = 10485760 | ||
CANARY_MAX_UPLOAD_SIZE=10485760 | ||
# upload settings | ||
#CANARY_MAX_UPLOAD_SIZE= #int | ||
#CANARY_WEB_IMAGE_UPLOAD_PATH= #str | ||
|
||
LOG_FILE=frontend.log | ||
# log settings | ||
#CANARY_FRONTEND_LOG_SIZE= #int | ||
#CANARY_FRONTEND_LOG_COUNT= #int | ||
|
||
# 3rd party settings | ||
#CANARY_AWSID_URL= #str | ||
#CANARY_AZURE_ID_TOKEN_URL= #str | ||
#CANARY_AZURE_ID_TOKEN_AUTH= #str | ||
#CANARY_GOOGLE_API_KEY= #str | ||
#CANARY_EXTEND_EMAIL= #str | ||
#CANARY_EXTEND_PASSWORD= #str | ||
#CANARY_EXTEND_CARD_NAME= #str |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,57 @@ | ||
#CANARY_MAILGUN_DOMAIN_NAME= | ||
#CANARY_MAILGUN_API_KEY= | ||
#CANARY_MANDRILL_API_KEY= | ||
#CANARY_SENDGRID_API_KEY= | ||
CANARY_PUBLIC_IP= | ||
#CANARY_PUBLIC_DOMAIN= | ||
CANARY_ALERT_EMAIL_FROM_ADDRESS= | ||
CANARY_ALERT_EMAIL_FROM_DISPLAY= | ||
CANARY_ALERT_EMAIL_SUBJECT= | ||
#CANARY_IPINFO_API_KEY= | ||
|
||
CANARY_TOKEN_RETURN=fortune | ||
|
||
CANARY_WEB_IMAGE_UPLOAD_PATH=/uploads | ||
|
||
LOG_FILE=switchboard.log | ||
|
||
# Default protocol to use in notification links. If you don't use LetsEncrypt, set to http | ||
PROTOCOL=https | ||
ERROR_LOG_WEBHOOK= | ||
# Required Settings | ||
CANARY_PUBLIC_DOMAIN= #str | ||
CANARY_WG_PRIVATE_KEY_SEED= #str | ||
LOG_FILE=switchboard.log #str | ||
|
||
# Optional Settings (these have sane defaults) | ||
#CANARY_CHANNEL_DNS_IP= #str | ||
#CANARY_CHANNEL_DNS_PORT= #int | ||
#CANARY_CHANNEL_HTTP_PORT= #int | ||
#CANARY_CHANNEL_SMTP_PORT= #int | ||
#CANARY_CHANNEL_MYSQL_PORT= #int | ||
#CANARY_CHANNEL_MTLS_KUBECONFIG_PORT= #int | ||
#CANARY_CHANNEL_WIREGUARD_PORT= #int | ||
#CANARY_SWITCHBOARD_SCHEME= #["https", "http"] | ||
#CANARY_FORCE_HTTPS= #bool | ||
#CANARY_REAL_IP_HEADER= #str | ||
|
||
#CANARY_WG_PRIVATE_KEY_N= #str | ||
|
||
# Email Alert Settings | ||
#CANARY_ALERT_EMAIL_FROM_ADDRESS= #str | ||
#CANARY_ALERT_EMAIL_FROM_DISPLAY= #str | ||
#CANARY_ALERT_EMAIL_SUBJECT= #str | ||
|
||
# Alert Settings | ||
#CANARY_MAX_ALERTS_PER_MINUTE= #int | ||
#CANARY_MAX_ALERT_FAILURES= #int | ||
|
||
# 3rd Party Settings | ||
#CANARY_IPINFO_API_KEY= #str | ||
|
||
# Mailgun Required Settings | ||
#CANARY_MAILGUN_API_KEY= #str | ||
#CANARY_MAILGUN_BASE_URL= #str | ||
#CANARY_MAILGUN_DOMAIN_NAME= #str | ||
|
||
# Sendgrid Required Settings | ||
#CANARY_SENDGRID_API_KEY= #str | ||
#CANARY_SENDGRID_SANDBOX_MODE= #str | ||
|
||
# SMTP Required Settings | ||
#CANARY_SMTP_USERNAME= #str | ||
#CANARY_SMTP_PASSWORD= #str | ||
#CANARY_SMTP_SERVER= #str | ||
#CANARY_SMTP_PORT= #str | ||
|
||
# Sentry Settings | ||
#CANARY_SENTRY_DSN= #str | ||
#CANARY_SENTRY_ENVIRONMENT= #["prod", "staging", "dev", "ci", "local"] | ||
#CANARY_SENTRY_ENABLE= #bool | ||
|
||
# Logging Settings | ||
#CANARY_SWITCHBOARD_LOG_SIZE= #int | ||
#CANARY_SWITCHBOARD_LOG_COUNT= #int | ||
#ERROR_LOG_WEBHOOK= #str | ||
|
||
#CANARY_TOKEN_RETURN= #["gif", "fortune"] |