-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy path.env.example
192 lines (148 loc) · 5.32 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
187
188
189
190
191
192
# --- Laravel Common Environment
APP_NAME="Connect-CMS"
APP_ENV=production
APP_KEY=
APP_DEBUG=false
APP_URL=http://localhost
LOG_CHANNEL=daily_info
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=laravel
DB_USERNAME=root
DB_PASSWORD=
# Cookie Secure setting. Set to true for https.
#SESSION_SECURE_COOKIE=true
# Cache-Control default value.
CACHE_CONTROL="max-age=604800"
# Login link path
LOGIN_PATH="login"
# Login link string
LOGIN_STR="ログイン"
# Self register base role.(comma separator. Not set is guest)
#SELF_REGISTER_BASE_ROLES="role_reporter"
BROADCAST_DRIVER=log
CACHE_DRIVER=file
QUEUE_CONNECTION=sync
SESSION_DRIVER=file
SESSION_LIFETIME=120
REDIS_HOST=127.0.0.1
REDIS_PASSWORD=null
REDIS_PORT=6379
MAIL_DRIVER=smtp
MAIL_HOST=smtp.mailtrap.io
MAIL_PORT=2525
MAIL_USERNAME=null
MAIL_PASSWORD=null
MAIL_ENCRYPTION=null
MAIL_FROM_ADDRESS=null
MAIL_FROM_NAME="${APP_NAME}"
AWS_ACCESS_KEY_ID=
AWS_SECRET_ACCESS_KEY=
AWS_DEFAULT_REGION=us-east-1
AWS_BUCKET=
PUSHER_APP_ID=
PUSHER_APP_KEY=
PUSHER_APP_SECRET=
PUSHER_APP_CLUSTER=mt1
MIX_PUSHER_APP_KEY="${PUSHER_APP_KEY}"
MIX_PUSHER_APP_CLUSTER="${PUSHER_APP_CLUSTER}"
# --- Connect-CMS Common option
# Session Options
# If you want them to immediately expire on the browser closing, set that option. (SESSION_LIFETIME is disabled when set to true)
SESSION_EXPIRE_ON_CLOSE=false
# cURL Options
HTTPPROXYTUNNEL=false
PROXYPORT=
PROXY=
PROXYUSERPWD=
CURL_TIMEOUT=
#OPTION_BATCH_SCHEDULE="signatureA|hh:mm,signatureB|hh:mm,・・・" *hh:mm(0~24h)
#(ex)OPTION_BATCH_SCHEDULE="TestBatchA|02:00,TestBatchB|03:00"
# Custom message.
# cc_lang_ja_messages_search_results_empty="検索結果が見つかりませんでした。"
# cc_lang_ja_messages_enter_same_email="同じメールアドレスを入力"
# cc_lang_ja_messages_input_user_name="表示されるユーザ名を入力します。"
# cc_lang_ja_messages_to_regist="新規登録"
# cc_lang_ja_messages_regist_application="登録申請"
# cc_lang_ja_messages_regist_confirmed="登録確定"
# cc_lang_ja_messages_change_application="変更申請"
# cc_lang_ja_messages_change_confirmed="変更確定"
# cc_lang_ja_messages_confirm_of_regist_application="登録申請します。\nよろしいですか?"
# cc_lang_ja_messages_confirmed_of_regist_application="登録確定します。\nよろしいですか?"
# cc_lang_ja_messages_confirm_of_change_application="変更申請します。\nよろしいですか?"
# cc_lang_ja_messages_confirmed_of_change_application="変更確定します。\nよろしいですか?"
# VerifyCsrfToken except.
VERIFY_CSRF_TOKEN_EXCEPT=""
# (BETA) Use the container
USE_CONTAINER_BETA=false
# Set to true if you want to have an item for each user type. (WARNING) If true is set to false after operation, please maintain user information appropriately.
USE_USERS_COLUMNS_SET=false
# PHP BIN path used when QUEUE_CONNECTION=database. Automatic judgment when null. e.g.) QUEUE_PHP_BIN=/usr/local/php/7.4/bin/php
QUEUE_PHP_BIN=
# Specify the plug-in name that disables the serial number clear function of serial number management. e.g.) PLUGIN_NAME_TO_DISABLE_SERIAL_NUMBER_CLEAR="forms"
PLUGIN_NAME_TO_DISABLE_SERIAL_NUMBER_CLEAR=""
# (BETA) File management by specifying a directory under public, e.g.) MANAGE_USERDIR_PUBLIC_TARGET="uploads"
#MANAGE_USERDIR_PUBLIC_TARGET="uploads"
# Set trusted proxy IP addresses.
TRUSTEDPROXY_PROXIES=
# --- Databases Plugin option
DATABASES_FORCE_SHOW_COLUMN_ON_DETAIL=false
# (BETA) If you want to show registered count about column on search conditions, set it true.
DATABASES_SHOW_SEARCH_COLUMN_COUNT=false
# --- Connect-CMS Migration option
# migration option (Common)
MIGRATION_JOB_MONITOR=true
MIGRATION_JOB_LOG=true
MIGRATION_CONFIG_PATH=/path_to_connect-cms/app/Traits/Migration/sample/migration_config/migration_config.sample.ini
# migration option (NetCommons2)
NC2_DB_CONNECTION=mysql
NC2_DB_HOST=127.0.0.1
NC2_DB_PORT=3306
NC2_DB_DATABASE=netcommons2
NC2_DB_USERNAME=nc2_homestead
NC2_DB_PASSWORD=nc2_homestead
NC2_DB_PREFIX=nc2_
NC2_EXPORT_UPLOADS_PATH=/path_to_nc2/webapp/uploads/
# migration option (NetCommons3)
NC3_DB_CONNECTION=mysql
NC3_DB_HOST=127.0.0.1
NC3_DB_PORT=3306
NC3_DB_DATABASE=netcommons3
NC3_DB_USERNAME=nc3_homestead
NC3_DB_PASSWORD=nc3_homestead
NC3_DB_PREFIX=nc3_
NC3_EXPORT_UPLOADS_PATH=/path_to_nc3/app/Uploads/
NC3_APPLICATION_YML_PATH=/path_to_nc3/app/Config/application.yml
# --- Connect-CMS Services option
# Common api key.
COMMON_API_KEY=""
# Translate API.
TRANSLATE_API_URL=""
TRANSLATE_API_KEY="${COMMON_API_KEY}"
# Automatically create thumbnails from PDF using API.
PDF_THUMBNAIL_API_URL=""
PDF_THUMBNAIL_API_KEY="${COMMON_API_KEY}"
# API pdf to text.
PDF_TO_TEXT_API_URL=""
PDF_TO_TEXT_API_KEY="${COMMON_API_KEY}"
# API photo face mosaic.
FACE_AI_API_URL=""
FACE_AI_API_KEY="${COMMON_API_KEY}"
# --- Connect-CMS Dusk option
# dusk use uploads dir.
#UPLOADS_DIRECTORY_BASE=uploads_dusk/
# manual put dir.
#MANUAL_PUT_BASE=C:\connect-cms-manual\
# manual contact page.
MANUAL_CONTACT_PAGE=''
# ffmpeg path
FFMPEG_PATH=C:\Lib\ffmpeg\ffmpeg.exe
# temporary aws sdk composer is error.
REQUIRE_AWS_SDK_PATH=C:\Lib\aws\aws-autoloader.php
# add theme dir.
#ADD_THEME_DIR=C:\SitesLaravel\theme\
# support info (If there is a support URL and if a viewing password is required.)
#COMMON_SUPPORT_URL=""
#INDIVIDUAL_SUPPORT_URL=""
#INDIVIDUAL_SUPPORT_PASSWORD=""