This repository has been archived by the owner on May 7, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 8
/
.env.example
71 lines (55 loc) · 1.92 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
APP_ENV=local
## Make sure this is disabled for production or it will leak sensitive data.
APP_DEBUG=false
APP_KEY=SomeRandomString
DB_CONNECTION=sqlite
DB_HOST=localhost
DB_DATABASE=homestead
DB_USERNAME=homestead
DB_PASSWORD=secret
CACHE_DRIVER=file
SESSION_DRIVER=file
QUEUE_DRIVER=sync
MAIL_DRIVER=smtp
MAIL_HOST=mailtrap.io
MAIL_PORT=2525
MAIL_USERNAME=null
MAIL_PASSWORD=null
MAIL_ENCRYPTION=null
MAIL_FROM=noreply@example.com
# Should cookies only be sent over a HTTPS connection?
SECURE_COOKIES=false
## Self-explanatory.
SITE_NAME=uPste
## The domain this site is hosted under. Used in emails and certain UI elements.
## Actual URLs are generated automatically by Laravel, regardless of this setting.
DOMAIN=example.com
## The url files are served from.
## Files are assumed to be stored in the root directory of this address.
UPLOAD_URL=https://a.example.com
## The initial length of upload slugs.
## This will increase as slugs become unavailable.
UPLOAD_SLUG_LENGTH=3
## Your email address. Used to send registration alerts and uncaught exceptions.
OWNER_EMAIL=me@example.com
## Your name.
OWNER_NAME=Me
## A link to public GPG key. Used to inform users how to securely contact you.
OWNER_GPG=null
## Upload limit per file IN MEGABYTES.
## Please note that your web server AND php.ini have to support AT LEAST this amount.
PER_UPLOAD_LIMIT=20
## Maximum amount of disk space a user can use IN MEGABYTES. Set to 0 for unlimited.
USER_STORAGE_QUOTA=0
## An IRC channel and server your users can contact you in.
IRC_CHANNEL=null
IRC_SERVER=null
## Attempt to remove EXIF tags from png and jpg images.
## This helps prevent accidental leaks of sensitive information like geolocation,
## but also modifies the uploaded files which may be undesirable.
STRIP_EXIF=true
## Google recaptcha keys for registration.
## https://www.google.com/recaptcha
## Set either to null to disable recaptcha.
RECAPTCHA_PUBLIC_KEY=null
RECAPTCHA_PRIVATE_KEY=null