diff options
Diffstat (limited to '.env.production.sample')
-rw-r--r-- | .env.production.sample | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.env.production.sample b/.env.production.sample index a3da10b97..e75bf9671 100644 --- a/.env.production.sample +++ b/.env.production.sample @@ -6,16 +6,13 @@ DB_USER=postgres DB_NAME=postgres DB_PASS= DB_PORT=5432 -NEO4J_HOST=neo4j -NEO4J_PORT=7474 # Federation LOCAL_DOMAIN=example.com LOCAL_HTTPS=true # Application secrets -# These are arbitrary strings. They should be long and cryptographically secure. -# For Docker, `docker-compose run --rm web rake secret` will generate them. +# Generate each with the `rake secret` task PAPERCLIP_SECRET= SECRET_KEY_BASE= @@ -25,3 +22,6 @@ SMTP_PORT=587 SMTP_LOGIN= SMTP_PASSWORD= SMTP_FROM_ADDRESS=notifications@example.com + +# Optional asset host for multi-server setups +# CDN_HOST=assets.example.com |