From c95daba5206cb4bd55b5685e8141311f23606e1a Mon Sep 17 00:00:00 2001 From: George Halkiadakis Date: Fri, 31 Mar 2023 05:49:40 +0300 Subject: added advances and secure confifuratin parametres --- core/auth/env.example | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 core/auth/env.example (limited to 'core/auth/env.example') diff --git a/core/auth/env.example b/core/auth/env.example new file mode 100644 index 0000000..fd47dd8 --- /dev/null +++ b/core/auth/env.example @@ -0,0 +1,36 @@ +ENVIRONMENT='development' + +# MySQL connection +# --- -- -- - - - +DB_NAME= +DB_USER= +DB_PASS= +PDO_HOST= + +# mailhog +# == testting/fake email service +# --- -- -- - - - +# MAIL_HOST=mailhog_server +# MAIL_PORT=1025 +# MAIL_USERNAME= +# MAIL_PASSWORD= +# MAIL_ENCRYPTION= + +# SMTP setup +# == read mail server +# --- -- -- - - - +MAIL_MAILER=smtp +MAIL_HOST= +MAIL_PORT=465 +MAIL_USERNAME= +MAIL_PASSWORD= +MAIL_ENCRYPTION=ssl +NO_REPLY_EMAIL=noreply@... +REPLY_TO_EMAIL=webmaster@r... +MAIL_FROM_NAME=Classroom + +# redis cache server +# --- -- -- - - - +# REDIS_HOST=redis +# REDIS_PASSWORD= +# REDIS_PORT=6379 \ No newline at end of file -- cgit v1.2.3