-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
30 lines (27 loc) · 1.26 KB
/
.env.example
File metadata and controls
30 lines (27 loc) · 1.26 KB
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
# ==============================================================================
# HTTP Request Lab 環境變數設定
#
# 使用方式:
# cp .env.example .env
# 依需求修改 .env 中的值
#
# 這些環境變數會透過 docker-compose 的 env_file 注入到 client container 中。
# ==============================================================================
# --------------------------------------------------------------------------
# Server 位址
# 在 docker-compose 網路中,service 名稱就是 hostname。
# 一般情況下不需要修改這些值。
# --------------------------------------------------------------------------
SERVER_HTTP_PARSED=http://server:8080
SERVER_HTTPS_PARSED=https://server:8443
SERVER_HTTP_RAW=http://server:8081
SERVER_HTTPS_RAW=https://server:8444
# --------------------------------------------------------------------------
# TLS 憑證
# CA 憑證路徑(container 內的路徑)
# --------------------------------------------------------------------------
CA_CERT_PATH=/app/certs/ca.crt
# --------------------------------------------------------------------------
# 測試資料檔路徑(container 內的路徑)
# --------------------------------------------------------------------------
TEST_DATA_PATH=/app/test-data.json