-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.env_default
197 lines (160 loc) · 5.42 KB
/
.env_default
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
#--------------------------------------------------------------------
# Example Environment Configuration file
#
# This file can be used as a starting point for your own
# custom .env files, and contains most of the possible settings
# available in a default install.
#
# By default, all of the settings are commented out. If you want
# to override the setting, you must un-comment it by removing the '#'
# at the beginning of the line.
#--------------------------------------------------------------------
#--------------------------------------------------------------------
# ENVIRONMENT
#--------------------------------------------------------------------
#--------------------------------------------------------------------
# LOGS
#--------------------------------------------------------------------
# Ip Logger
LOG_WITH_FILE = 'OFF'
LOG_WITH_DB = 'ON'
# Ip Logger END
# Email Information
#--------------------------------------------------------------------
# MAIL
#--------------------------------------------------------------------
###
## !!!NOT!!! Eğer MAIL_SMTPUSER tanımlı olmazsa kayıt aktivasyon mail gönderme işlevi çalışmaz ! ##
###
# Mail config
MAIL_SYSTEM = 'OFF'
# Email activation endpoint
EMAIL_ACTIVATION_ENDPOINT = 'users/activation/'
# Email activation endpoint END
# ---
# Mail System
MAIL_Protocol = 'smtp'
MAIL_Path = '/usr/sbin/sendmail'
MAIL_Charset = 'utf8'
MAIL_WordWrap = 'true'
MAIL_Priority = '1'
# Mail System END
# Mail User Conf
MAIL_SMTPHOST = ''
MAIL_SMTPUSER = ''
MAIL_SMTPPASS = ''
MAIL_SMTPPORT = '587'
# Mail User Conf END
# ---
# Activation Mail Content
MAIL_TYPE = 'html'
MAIL_FROM = ''
MAIL_NAME = ' Mail Servisi'
MAIL_DEFAULT_SUBJECT = ''
MAIL_DEFAULT_MESSAGE_WELCOME = ''
MAIL_DEFAULT_MESSAGE_LINK_TEXT = ''
MAIL_DEFAULT_MESSAGE_ALTERNATIVE_TEXT = ''
MAIL_DEFAULT_MESSAGE_ALTERNATIVE_TEXT2 = ''
# Activation Mail Content END
# ---
# Mail config END
#--------------------------------------------------------------------
# CAPTCHA
#--------------------------------------------------------------------
# Google Captcha Secret Key
captcha_secret_key = ''
capctcha_site_key = ''
#--------------------------------------------------------------------
# AWS
#--------------------------------------------------------------------
#-- AWS --
AWS_ENABLED = 'OFF'
AWS_REGION = ''
AWS_ACCESKEYID = ''
AWS_SECRETKEY = ''
AWS_BUCKET_NAME = ''
REMOTE_PUBLIC_BASE_ADDRESS = ''
#-- AWS END --
#--------------------------------------------------------------------
# SITE GENERAL
#--------------------------------------------------------------------
#-- Site Info --
SITE_NAME = ''
# IMPORTANT
LOCATION_WAIT = '0'
#-- Site Info END --
##-- INFO > SELECT AWS OR LOCAL
#-- UPLOAD LOCATION --
UPLOAD_LOCATION = 'LOCAL'
#-- UPLOAD LOCATION END --
#-- Image Constants --
IMAGE_FOLDER_BASE = 'public/uploads/'
REAL_IMAGE_FOLDER = 'images/'
ICON_BASE_FOLDER = 'public/assets/svg/UserIcon/'
#-- Image Constants END --
#-- Assets Constants --
ASSETS_BASE = 'public/assets'
CSS_FOLDER_BASE = 'css'
#-- Assets Constants END --
#--------------------------------------------------------------------
# APP
#--------------------------------------------------------------------
app.baseURL = ''
# app.forceGlobalSecureRequests = false
# app.cookiePrefix = ''
# app.cookieDomain = ''
# app.cookiePath = '/'
# app.cookieSecure = false
# app.cookieHTTPOnly = false
# app.CSRFProtection = false
# app.CSRFTokenName = 'csrf_test_name'
# app.CSRFCookieName = 'csrf_cookie_name'
# app.CSRFExpire = 7200
# app.CSRFRegenerate = true
# app.CSRFExcludeURIs = []
# app.CSPEnabled = false
CI_ENVIRONMENT = production
#--------------------------------------------------------------------
# SETUP
#--------------------------------------------------------------------
SETUP = 'ON'
#--------------------------------------------------------------------
# DATABASE
#--------------------------------------------------------------------
database.default.hostname = ''
database.default.database = ''
database.default.username = ''
database.default.password = ''
database.default.DBDriver = 'MySQLi'
# database.tests.hostname = localhost
# database.tests.database = ci4
# database.tests.username = root
# database.tests.password = root
# database.tests.DBDriver = MySQLi
#--------------------------------------------------------------------
# CONTENT SECURITY POLICY
#--------------------------------------------------------------------
# contentsecuritypolicy.reportOnly = false
# contentsecuritypolicy.defaultSrc = 'none'
# contentsecuritypolicy.scriptSrc = 'self'
# contentsecuritypolicy.styleSrc = 'self'
# contentsecuritypolicy.imageSrc = 'self'
# contentsecuritypolicy.base_uri = null
# contentsecuritypolicy.childSrc = null
# contentsecuritypolicy.connectSrc = 'self'
# contentsecuritypolicy.fontSrc = null
# contentsecuritypolicy.formAction = null
# contentsecuritypolicy.frameAncestors = null
# contentsecuritypolicy.mediaSrc = null
# contentsecuritypolicy.objectSrc = null
# contentsecuritypolicy.pluginTypes = null
# contentsecuritypolicy.reportURI = null
# contentsecuritypolicy.sandbox = false
# contentsecuritypolicy.upgradeInsecureRequests = false
#--------------------------------------------------------------------
# HONEYPOT
#--------------------------------------------------------------------
# honeypot.hidden = 'true'
# honeypot.label = 'Fill This Field'
# honeypot.name = 'honeypot'
# honeypot.template = '<label>{label}</label><input type="text" name="{name}" value=""/>'