forked from eveseat/seat-docker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env
121 lines (92 loc) · 3.48 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
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
# SeAT Docker Compose Configuration
# Web server configuration.
# SeAT running in a docker-compose setup ships with Traefik
# as the default web server. You only need to configure the
# parent domain and port where the web server will listen.
# In most cases, just configuring the domain will be all
# you need to do.
#
# For advanced users, if the default httpchallenge is not what
# you wanted, refer to the Traefik 2 docs here:
# https://docs.traefik.io/https/acme/#the-different-acme-challenges
TRAEFIK_DOMAIN=seat.local
TRAEFIK_HTTPS_PORT=443
# Only used for ACME, SeAT won't listen here.
TRAEFIK_HTTP_PORT=80
# Web server TLS.
#
# One of the amazing features of Traefik is easy-mode TLS config
# toegether with Let's Encrypt. Simply Enable autmatic certificate
# renewals by uncommenting the cert resolver lines in the seat-web
# service and enter your email address below (ACME requirement).
# SeAT Web Address
#
# Taking into consideration the value you set for TRAEFIK_DOMAIN,
# the SEAT_SUBDOMAIN value is the DNS hostname configuration for
# the SeAT User Interface. Setting this to a value of `seat`, with
# TRAEFIK_DOMAIN set as `seat.local` means your installations web
# interface will be available at `seat.seat.local`.
SEAT_SUBDOMAIN=seat
# Eve Online SSO Configuration.
#
# This is a *required* setup step. Refer to the docs to learn how
# to get the correct values to enter here.
EVE_CLIENT_ID=null
EVE_CLIENT_SECRET=null
EVE_CALLBACK_URL=https://${SEAT_SUBDOMAIN}.${TRAEFIK_DOMAIN}/auth/eve/callback
# SeAT Plugins
# This is a list of the all of the third party plugins that you
# would like to install as part of SeAT. Package names should be
# comma seperated if multiple packages should be installed.
#SEAT_PLUGINS=vendor1/package
#SEAT_PLUGINS=vendor1/package,vendor2/package
# ---------------------------
# End of manual configuration
# ---------------------------
# Unless you are running into trouble, the following settings
# usually don't need any changes.
# Application "debug" mode.
# For production installations, this should *always* be false.
# If you need to debug something, feel free to enable this and
# test. But, make sure you come back and disable it when you are done.
#
# This flag will enable with the Laravel verbose debug printing but
# will *also* enable the Traefik dashboard.
APP_DEBUG=false
# URL where your SeAT instance can be found from the Internet.
APP_URL=https://${SEAT_SUBDOMAIN}.${TRAEFIK_DOMAIN}
# The applications key.
# This key is used by anything that makes use of encryption.
# That includes encrypting specific values as well as cookies.
APP_KEY=insecure
# App Environment
APP_ENV=local
# Database details.
DB_DATABASE=seat
DB_USERNAME=seat
DB_HOST=mariadb
DB_PASSWORD=i_should_be_changed
# Redis
REDIS_HOST=redis
# Mail configuration
MAIL_DRIVER=smtp
MAIL_HOST=smtp.mailtrap.io
MAIL_PORT=2525
MAIL_USERNAME=null
MAIL_PASSWORD=null
MAIL_ENCRYPTION=null
MAIL_FROM_NAME='SeAT Administrator'
# Container entries
# Related to container_names you probably won't need to change this at all
# but these variables will be here either way.
# Uncomment and set name. Only set if you have a conflict at all. As in
# As in container_name is already taken this will help debugging,
# However if you do change anything here make sure it reflects to stuff above.
#mariadb_name=mariadb
#redis_name=redis
#traefik_name=traefik
#seatweb_name=seat-web
#seatworker_name=seat-worker
#seatcron_name=seat-cron