mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-09 16:24:51 +00:00
update .env.docker
This commit is contained in:
parent
bc66b6da18
commit
143d5703dd
2 changed files with 25 additions and 17 deletions
40
.env.docker
40
.env.docker
|
@ -12,15 +12,16 @@
|
||||||
# app
|
# app
|
||||||
################################################################################
|
################################################################################
|
||||||
|
|
||||||
|
# The name/title for your site
|
||||||
# @see https://docs.pixelfed.org/technical-documentation/config/#app_name-1
|
# @see https://docs.pixelfed.org/technical-documentation/config/#app_name-1
|
||||||
# @dottie/validate required
|
# @dottie/validate required,ne=My Pixelfed Site
|
||||||
APP_NAME="Pixelfed Prod"
|
APP_NAME="My Pixelfed Site"
|
||||||
|
|
||||||
# Application domains used for routing.
|
# Application domain used for routing. (e.g., pixelfed.org)
|
||||||
#
|
#
|
||||||
# @see https://docs.pixelfed.org/technical-documentation/config/#app_domain
|
# @see https://docs.pixelfed.org/technical-documentation/config/#app_domain
|
||||||
# @dottie/validate required,fqdn
|
# @dottie/validate required,ne=example.com,fqdn
|
||||||
APP_DOMAIN="__CHANGE_ME__"
|
APP_DOMAIN="example.com"
|
||||||
|
|
||||||
# This URL is used by the console to properly generate URLs when using the Artisan command line tool.
|
# This URL is used by the console to properly generate URLs when using the Artisan command line tool.
|
||||||
# You should set this to the root of your application so that it is used when running Artisan tasks.
|
# You should set this to the root of your application so that it is used when running Artisan tasks.
|
||||||
|
@ -208,10 +209,12 @@ APP_TIMEZONE="UTC"
|
||||||
# @dottie/validate required,boolean
|
# @dottie/validate required,boolean
|
||||||
#INSTANCE_PUBLIC_HASHTAGS="false"
|
#INSTANCE_PUBLIC_HASHTAGS="false"
|
||||||
|
|
||||||
|
# The public e-mail address people can use to contact you by
|
||||||
|
#
|
||||||
# @default ""
|
# @default ""
|
||||||
# @see https://docs.pixelfed.org/technical-documentation/config/#instance_contact_email
|
# @see https://docs.pixelfed.org/technical-documentation/config/#instance_contact_email
|
||||||
# @dottie/validate required,email
|
# @dottie/validate required,ne=__CHANGE_ME__,email
|
||||||
INSTANCE_CONTACT_EMAIL="admin@${APP_DOMAIN}"
|
INSTANCE_CONTACT_EMAIL="__CHANGE_ME__"
|
||||||
|
|
||||||
# @default "false"
|
# @default "false"
|
||||||
# @see https://docs.pixelfed.org/technical-documentation/config/#instance_public_local_timeline
|
# @see https://docs.pixelfed.org/technical-documentation/config/#instance_public_local_timeline
|
||||||
|
@ -237,7 +240,7 @@ INSTANCE_CONTACT_EMAIL="admin@${APP_DOMAIN}"
|
||||||
# @default false
|
# @default false
|
||||||
# @see https://docs.pixelfed.org/technical-documentation/config/#media_exif_database
|
# @see https://docs.pixelfed.org/technical-documentation/config/#media_exif_database
|
||||||
# @dottie/validate required,boolean
|
# @dottie/validate required,boolean
|
||||||
MEDIA_EXIF_DATABASE="true"
|
#MEDIA_EXIF_DATABASE="false"
|
||||||
|
|
||||||
# Pixelfed supports GD or ImageMagick to process images.
|
# Pixelfed supports GD or ImageMagick to process images.
|
||||||
#
|
#
|
||||||
|
@ -357,9 +360,12 @@ DB_HOST="db"
|
||||||
# @dottie/validate required
|
# @dottie/validate required
|
||||||
DB_USERNAME="pixelfed"
|
DB_USERNAME="pixelfed"
|
||||||
|
|
||||||
|
# The password to your database. Please make it secure.
|
||||||
|
# Use a site like https://pwgen.io/ to generate it
|
||||||
|
#
|
||||||
# @see https://docs.pixelfed.org/technical-documentation/config/#db_password
|
# @see https://docs.pixelfed.org/technical-documentation/config/#db_password
|
||||||
# @dottie/validate required
|
# @dottie/validate required,ne=__CHANGE_ME__
|
||||||
DB_PASSWORD=
|
DB_PASSWORD="__CHANGE_ME__"
|
||||||
|
|
||||||
# @see https://docs.pixelfed.org/technical-documentation/config/#db_database
|
# @see https://docs.pixelfed.org/technical-documentation/config/#db_database
|
||||||
# @dottie/validate required
|
# @dottie/validate required
|
||||||
|
@ -416,19 +422,21 @@ DB_APPLY_NEW_MIGRATIONS_AUTOMATICALLY="false"
|
||||||
# @dottie/validate required_with=MAIL_DRIVER,number
|
# @dottie/validate required_with=MAIL_DRIVER,number
|
||||||
#MAIL_PORT="587"
|
#MAIL_PORT="587"
|
||||||
|
|
||||||
# You may wish for all e-mails sent by your application to be sent from the same address.
|
|
||||||
#
|
|
||||||
# Here, you may specify a name and address that is used globally for all e-mails that are sent by your application.
|
# Here, you may specify a name and address that is used globally for all e-mails that are sent by your application.
|
||||||
#
|
#
|
||||||
# @default "hello@example.com"
|
# You may wish for all e-mails sent by your application to be sent from the same address.
|
||||||
|
#
|
||||||
|
# @default "bot@example.com"
|
||||||
# @see https://docs.pixelfed.org/technical-documentation/config/#mail_from_address
|
# @see https://docs.pixelfed.org/technical-documentation/config/#mail_from_address
|
||||||
# @dottie/validate required_with=MAIL_DRIVER,email
|
# @dottie/validate required_with=MAIL_DRIVER,email,ne=__CHANGE_ME__
|
||||||
MAIL_FROM_ADDRESS="hello@${APP_DOMAIN}"
|
#MAIL_FROM_ADDRESS="__CHANGE_ME__"
|
||||||
|
|
||||||
|
# The 'name' you send e-mail from
|
||||||
|
#
|
||||||
# @default "Example"
|
# @default "Example"
|
||||||
# @see https://docs.pixelfed.org/technical-documentation/config/#mail_from_name
|
# @see https://docs.pixelfed.org/technical-documentation/config/#mail_from_name
|
||||||
# @dottie/validate required_with=MAIL_DRIVER
|
# @dottie/validate required_with=MAIL_DRIVER
|
||||||
MAIL_FROM_NAME="Pixelfed @ ${APP_DOMAIN}"
|
#MAIL_FROM_NAME="${APP_NAME}"
|
||||||
|
|
||||||
# If your SMTP server requires a username for authentication, you should set it here.
|
# If your SMTP server requires a username for authentication, you should set it here.
|
||||||
#
|
#
|
||||||
|
|
|
@ -21,7 +21,7 @@ ARG FOREGO_VERSION="0.17.2"
|
||||||
ARG GOMPLATE_VERSION="v3.11.6"
|
ARG GOMPLATE_VERSION="v3.11.6"
|
||||||
|
|
||||||
# See: https://github.com/jippi/dottie
|
# See: https://github.com/jippi/dottie
|
||||||
ARG DOTTIE_VERSION="v0.6.5"
|
ARG DOTTIE_VERSION="v0.6.9"
|
||||||
|
|
||||||
###
|
###
|
||||||
# PHP base configuration
|
# PHP base configuration
|
||||||
|
|
Loading…
Reference in a new issue