forked from R3dFruitRollUp/FiercePhish
-
Notifications
You must be signed in to change notification settings - Fork 2
/
.env.example
186 lines (131 loc) · 4.96 KB
/
.env.example
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
### If you edit this file, it is imperative that you run:
### php artisan config:cache
############################
####### App Settings #######
############################
## Application environment (default: master)
APP_ENV=master
## Debugging mode (default: false)
APP_DEBUG=false
## Application Logging level
APP_LOG_LEVEL=debug
## Application Timezone (default: America/Chicago)
APP_TIMEZONE=America/Chicago
## Application encryption key
## Generate this with "php artisan key:generate"
## Then run: "php artisan config:cache"
APP_KEY=SomeRandomString
## Application URL (default: http://localhost)
APP_URL=http://localhost
## Application Name, no need to change this (default: FiercePhish)
APP_NAME=FiercePhish
#-------------------------------------------------------------------------------
##############################
####### Proxy Settings #######
##############################
## Root URL prefix for the proxy. (default: null)
## This is useful if FiercePhish is behind a proxy or loadbalancer
## Example: https://firephish.example.com/
PROXY_URL=null
## Schema to use for the proxy. (default null)
## This is useful if FiercePhish is behind a HTTPS proxy or loadbalancer
## Options: null https http
PROXY_SCHEMA=null
#-------------------------------------------------------------------------------
#################################
####### Database Settings #######
#################################
## Database type (default: mysql)
DB_CONNECTION=mysql
## Database host (default: 127.0.0.1)
DB_HOST=127.0.0.1
## Database port (default: 3306)
DB_PORT=3306
## Database username (default: root)
DB_USERNAME=root
## Database password
DB_PASSWORD=secret
## Database name (default: fiercephish)
DB_DATABASE=fiercephish
#-------------------------------------------------------------------------------
##############################
###### Service settings ######
##############################
## Cache driver (this shouldn't really change) (default: file)
CACHE_DRIVER=file
## Session driver (this shouldn't really change) (default: file)
SESSION_DRIVER=file
## Broadcast driver (this shouldn't really change) (default: log)
BROADCAST_DRIVER=log
## Queue drvier (this shouldn't really change) (default: database)
QUEUE_DRIVER=database
## Redis hostname (this is unused currently) (default: 127.0.0.1)
REDIS_HOST=127.0.0.1
## Redis password (this is unused currently) (default: null)
REDIS_PASSWORD=null
## Redis port (this is unused currently) (default: 6379)
REDIS_PORT=6379
## Pusher App ID (this is unused currently) (default: null)
PUSHER_APP_ID=null
## Pusher key (this is unused currently) (default: null)
PUSHER_APP_KEY=null
## Pusher secret (this is unused currently) (default: null)
PUSHER_APP_SECRET=null
#-------------------------------------------------------------------------------
#############################
####### Mail settings #######
#############################
## Mail driver to use (default: smtp)
## Options: stmp mailgun
MAIL_DRIVER=smtp
## SMTP hostname (default: 127.0.0.1)
MAIL_HOST=127.0.0.1
## SMTP port (default: 25)
MAIL_PORT=25
## SMTP username (default: null)
MAIL_USERNAME=null
## SMTP password (default: null)
MAIL_PASSWORD=null
## SMTP connection encryption (default: null)
## Options: null tls
MAIL_ENCRYPTION=null
## Mailgun domain (default: null)
MAILGUN_DOMAIN=null
## Mailgun secret key (default: null)
MAILGUN_SECRET=null
#-------------------------------------------------------------------------------
####################################
####### FiercePhish Settings #######
####################################
## Prefix for FiercePhish instance (default: null)
## Example: if this is "test/this", access FiercePhish by browsing
## to http://IP/test/this
URI_PREFIX=null
## Test mode for email sending (default: false)
## If this is "true", emails will not actually be sent
TEST_EMAIL_JOB=false
## Imap host for inbox feature (default: null)
IMAP_HOST=null
## Imap port for inbox feature (default: 143)
IMAP_PORT=143
## Imap username for inbox feature (default: fiercephish)
## Currently unused
IMAP_USERNAME=fiercephish
## Imap password for inbox feature (default: null)
## Currently unused
IMAP_PASSWORD=null
## Email to BCC on all emails sent out (default: null)
## This is helpful if you want to see all emails actually
## being sent and want a log of it.
MAIL_BCC_ALL=null
#-------------------------------------------------------------------------------
#################################
####### Advanced Settings #######
#################################
## This enables Analytics to see how much FiercePhish is actually being used. By
## being able to see how much this project is being used, I can dedicate time to
## specific features and it encourages development. All information is anonymized
## and no sensitive data is ever sent. However, if you would like to disable this,
## change below to "false". It is much appreciated to keep it enabled, however.
## (default: true)
ANALYTICS=true