92cd7a84ad
This has changed about a year ago, but this example was missed. Fixes: d664b51c6490ebed3557c002ad912cfa828aef56
43 lines
1.3 KiB
Bash
43 lines
1.3 KiB
Bash
# See more env options in src/config/env.ts
|
|
# Hostname - the public domain that you intend to deploy your service at
|
|
PDS_HOSTNAME="example.com"
|
|
PDS_PORT="2583"
|
|
|
|
# Database config - use one or the other
|
|
PDS_DATA_DIRECTORY="data"
|
|
|
|
# Blobstore - filesystem location to store uploaded blobs
|
|
PDS_BLOBSTORE_DISK_LOCATION="blobs"
|
|
|
|
# Private keys - these are each expected to be 64 char hex strings (256 bit)
|
|
PDS_REPO_SIGNING_KEY_K256_PRIVATE_KEY_HEX="3ee68..."
|
|
PDS_PLC_ROTATION_KEY_K256_PRIVATE_KEY_HEX="e049f..."
|
|
|
|
# Secrets - update to secure high-entropy strings
|
|
PDS_DPOP_SECRET="32-random-bytes-hex-encoded"
|
|
PDS_JWT_SECRET="jwt-secret"
|
|
PDS_ADMIN_PASSWORD="admin-pass"
|
|
|
|
# Environment - example is for live network
|
|
PDS_DID_PLC_URL="https://plc.directory"
|
|
PDS_BSKY_APP_VIEW_URL="https://api.bsky.app"
|
|
PDS_BSKY_APP_VIEW_DID="did:web:api.bsky.app"
|
|
PDS_CRAWLERS="https://bsky.network"
|
|
|
|
# OAuth Provider
|
|
PDS_OAUTH_PROVIDER_NAME="John's self hosted PDS"
|
|
PDS_OAUTH_PROVIDER_LOGO=
|
|
PDS_OAUTH_PROVIDER_PRIMARY_COLOR="#7507e3"
|
|
PDS_OAUTH_PROVIDER_ERROR_COLOR=
|
|
PDS_OAUTH_PROVIDER_HOME_LINK=
|
|
PDS_OAUTH_PROVIDER_TOS_LINK=
|
|
PDS_OAUTH_PROVIDER_POLICY_LINK=
|
|
PDS_OAUTH_PROVIDER_SUPPORT_LINK=
|
|
|
|
# Debugging
|
|
NODE_TLS_REJECT_UNAUTHORIZED=1
|
|
LOG_ENABLED=0
|
|
LOG_LEVEL=info
|
|
PDS_INVITE_REQUIRED=1
|
|
PDS_DISABLE_SSRF_PROTECTION=0
|