Skip to content

Commit 080dfb2

Browse files
committedDec 15, 2023
fix: fix Security vulnerability
Signed-off-by: Xinwei Xiong (cubxxw) <3293172751nss@gmail.com>
1 parent 10646f2 commit 080dfb2

File tree

4 files changed

+25
-13
lines changed

4 files changed

+25
-13
lines changed
 

‎Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ ENV GOPROXY=$GOPROXY
1010
# Set up the working directory
1111
WORKDIR /openim/openim-server
1212

13-
COPY go.mod go.sum ./dd
13+
COPY go.mod go.sum ./
1414
RUN go mod download
1515

1616
# Copy all files to the container

‎config/templates/config.yaml.template

+3-3
Original file line numberDiff line numberDiff line change
@@ -122,14 +122,14 @@ api:
122122
# minio.signEndpoint is minio public network address
123123
object:
124124
enable: "minio"
125-
apiURL: "http://14.155.64.202:10002"
125+
apiURL: "http://172.28.0.1:10002"
126126
minio:
127127
bucket: "openim"
128128
endpoint: "http://172.28.0.1:10005"
129129
accessKeyID: "root"
130130
secretAccessKey: "openIM123"
131131
sessionToken: ''
132-
signEndpoint: "http://14.155.64.202:10005"
132+
signEndpoint: "http://172.28.0.1:10005"
133133
publicRead: false
134134
cos:
135135
bucketURL: https://temp-1252357374.cos.ap-chengdu.myqcloud.com
@@ -193,7 +193,7 @@ rpcRegisterName:
193193
# Whether to output in json format
194194
# Whether to include stack trace in logs
195195
log:
196-
storageLocation: /data/workspaces/open-im-server/logs/
196+
storageLocation: ../logs/
197197
rotationTime: 24
198198
remainRotationCount: 2
199199
remainLogLevel: 6

‎config/templates/env.template

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,11 @@ PASSWORD=openIM123
2626

2727
# Base URL for the application programming interface (API).
2828
# Default: API_URL=http://172.28.0.1:10002
29-
API_URL=http://14.155.64.202:10002
29+
API_URL=http://172.28.0.1:10002
3030

3131
# Directory path for storing data files or related information.
3232
# Default: DATA_DIR=./
33-
DATA_DIR=/data/workspaces/open-im-server
33+
DATA_DIR=./
3434

3535
# Choose the appropriate image address, the default is GITHUB image,
3636
# you can choose docker hub, for Chinese users can choose Ali Cloud

‎scripts/init-config.sh

+19-7
Original file line numberDiff line numberDiff line change
@@ -111,6 +111,7 @@ generate_example_files() {
111111
local example_file="${COPY_EXAMPLES[$template]}"
112112
process_file "$template" "$example_file" false
113113
done
114+
114115
}
115116

116117
# Function to process a single file, either by generating or copying
@@ -146,10 +147,17 @@ process_file() {
146147
openim::log::error "genconfig.sh script not found"
147148
exit 1
148149
fi
149-
"${OPENIM_ROOT}/scripts/genconfig.sh" "${ENV_FILE}" "${template}" > "${output_file}" || {
150-
openim::log::error "Error processing template file ${template}"
151-
exit 1
152-
}
150+
if [[ -n "${env_cmd}" ]]; then
151+
eval "$env_cmd ${OPENIM_ROOT}/scripts/genconfig.sh '${ENV_FILE}' '${template}' > '${output_file}'" || {
152+
openim::log::error "Error processing template file ${template}"
153+
exit 1
154+
}
155+
else
156+
"${OPENIM_ROOT}/scripts/genconfig.sh" "${ENV_FILE}" "${template}" > "${output_file}" || {
157+
openim::log::error "Error processing template file ${template}"
158+
exit 1
159+
}
160+
fi
153161
else
154162
openim::log::info "📋 Copying ${template} to ${output_file}..."
155163
cp "${template}" "${output_file}" || {
@@ -167,9 +175,10 @@ declare -A env_vars=(
167175
["LOG_STORAGE_LOCATION"]="../logs/"
168176
)
169177

170-
# Function to clean configuration files
171178
clean_config_files() {
172-
for output_file in "${TEMPLATES[@]}"; do
179+
local all_templates=("${TEMPLATES[@]}" "${COPY_TEMPLATES[@]}")
180+
181+
for output_file in "${all_templates[@]}"; do
173182
if [[ -f "${output_file}" ]]; then
174183
rm -f "${output_file}"
175184
openim::log::info "Removed configuration file: ${output_file}"
@@ -179,7 +188,10 @@ clean_config_files() {
179188

180189
# Function to clean example files
181190
clean_example_files() {
182-
for example_file in "${EXAMPLES[@]}"; do
191+
# 合并 EXAMPLES 和 COPY_EXAMPLES 数组
192+
local all_examples=("${EXAMPLES[@]}" "${COPY_EXAMPLES[@]}")
193+
194+
for example_file in "${all_examples[@]}"; do
183195
if [[ -f "${example_file}" ]]; then
184196
rm -f "${example_file}"
185197
openim::log::info "Removed example file: ${example_file}"

0 commit comments

Comments
 (0)