-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env
38 lines (34 loc) · 1.94 KB
/
.env
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# Change after November 2018 : https://symfony.com/doc/4.1/configuration/dot-env-changes.html
# This file is a "template" of which env vars need to be defined for your application
# Copy this file to .env file for development, create environment variables when deploying to production
# https://symfony.com/doc/current/best_practices/configuration.html#infrastructure-related-configuration
# Website name displayed and visible in application:
WEBSITE_NAME=Your website name
# Default logo .jpeg file is provided in public/assets/mailing/logo:
ABSOLUTE_URL_FOR_HOSTED_LOGO=your_absolute_defined_path_to_hosted_mailing_logo
###> symfony/framework-bundle ###
APP_ENV=dev
APP_SECRET=ffa18a3943e672e66fa18cb17de6079a
#TRUSTED_PROXIES=127.0.0.1,127.0.0.2
#TRUSTED_HOSTS=localhost,example.com
###< symfony/framework-bundle ###
###> doctrine/doctrine-bundle ###
# Format described at http://docs.doctrine-project.org/projects/doctrine-dbal/en/latest/reference/configuration.html#connecting-using-a-url
# For an SQLite database, use: "sqlite:///%kernel.project_dir%/var/data.db"
# Configure your db driver and server_version in config/packages/doctrine.yaml
DATABASE_URL=mysql://db_user:db_password@127.0.0.1:3306/db_name
###< doctrine/doctrine-bundle ###
###> symfony/swiftmailer-bundle ###
# For Gmail as a transport, use: "gmail://username:password@localhost"
# For a generic SMTP server, use: "smtp://localhost:25?encryption=&auth_mode="
# Delivery is disabled by default via "null://localhost"
#MAILER_URL=null://localhost
# IMPORTANT: to authorize the use of google account with less secure apps: https://myaccount.google.com/lesssecureapps
MAILER_DEV_URL=mailer_server_dev_parameters
# Swift_Mailer sender email address:
MAILER_SENDER_EMAIL=your_mailing_sender_email_address
# Swift_Mailer sender name:
MAILER_SENDER_NAME=${WEBSITE_NAME} - Your mailing sender name
# Use smtp relay and credentials in prod!
MAILER_URL=mailer_server_prod_parameters
###< symfony/swiftmailer-bundle ###