--- client/views/pages/main/AIDashboard.vue
+++ client/views/pages/main/AIDashboard.vue
... | ... | @@ -278,7 +278,7 @@ |
278 | 278 |
this.images = fileResults.map(file => { |
279 | 279 |
if (file) { |
280 | 280 |
return { |
281 |
- url: "http://localhost:9080/" + `${file.fileRpath}`, |
|
281 |
+ url: "http://165.229.169.113:9080/" + `${file.fileRpath}`, |
|
282 | 282 |
fileId: file.fileId, |
283 | 283 |
fileNm: file.fileNm, |
284 | 284 |
// Add any other properties you need here |
--- client/views/pages/main/Chapter/Chapter1_3.vue
+++ client/views/pages/main/Chapter/Chapter1_3.vue
... | ... | @@ -70,7 +70,7 @@ |
70 | 70 |
}, |
71 | 71 |
// 이미지 불러오기 |
72 | 72 |
fetchImage(fileRpath) { |
73 |
- return "http://localhost:9080/" + fileRpath; |
|
73 |
+ return "http://165.229.169.113:9080/" + fileRpath; |
|
74 | 74 |
}, |
75 | 75 |
}, |
76 | 76 |
watch: {}, |
--- client/views/pages/main/Dashboard.vue
+++ client/views/pages/main/Dashboard.vue
... | ... | @@ -371,7 +371,7 @@ |
371 | 371 |
const result = fileResults[index]; |
372 | 372 |
if (result) { |
373 | 373 |
return { |
374 |
- url: "http://localhost:9080/" + `${result.fileRpath}`, |
|
374 |
+ url: "http://165.229.169.113:9080/" + `${result.fileRpath}`, |
|
375 | 375 |
fileId: result.fileId, |
376 | 376 |
fileNm: result.fileNm, |
377 | 377 |
fileRegDate: result.regDt, |
--- client/views/pages/main/PhotoBook.vue
+++ client/views/pages/main/PhotoBook.vue
... | ... | @@ -258,7 +258,7 @@ |
258 | 258 |
}); |
259 | 259 |
}, |
260 | 260 |
fetchImage(fileRpath) { |
261 |
- return "http://localhost:9080/" + fileRpath; |
|
261 |
+ return "http://165.229.169.113:9080/" + fileRpath; |
|
262 | 262 |
}, |
263 | 263 |
}, |
264 | 264 |
watch: {}, |
--- client/views/pages/main/PhotoEdit.vue
+++ client/views/pages/main/PhotoEdit.vue
... | ... | @@ -81,7 +81,7 @@ |
81 | 81 |
formData.append("files", file); |
82 | 82 |
|
83 | 83 |
try { |
84 |
- const response = await axios.post("http://localhost:9080/file/upload.json", formData, { |
|
84 |
+ const response = await axios.post("http://165.229.169.113:9080/file/upload.json", formData, { |
|
85 | 85 |
headers: { |
86 | 86 |
"Content-Type": "multipart/form-data", |
87 | 87 |
}, |
--- client/views/pages/teacher/QuestionDetail.vue
+++ client/views/pages/teacher/QuestionDetail.vue
... | ... | @@ -576,7 +576,7 @@ |
576 | 576 |
} |
577 | 577 |
|
578 | 578 |
try { |
579 |
- const response = await axios.post("http://localhost:9080/file/upload.json", formData, { |
|
579 |
+ const response = await axios.post("http://165.229.169.113:9080/file/upload.json", formData, { |
|
580 | 580 |
headers: { |
581 | 581 |
"Content-Type": "multipart/form-data", |
582 | 582 |
}, |
--- client/views/pages/teacher/QuestionInsert.vue
+++ client/views/pages/teacher/QuestionInsert.vue
... | ... | @@ -374,7 +374,7 @@ |
374 | 374 |
} |
375 | 375 |
|
376 | 376 |
try { |
377 |
- const response = await axios.post("http://localhost:9080/file/upload.json", formData, { |
|
377 |
+ const response = await axios.post("http://165.229.169.113:9080/file/upload.json", formData, { |
|
378 | 378 |
headers: { |
379 | 379 |
"Content-Type": "multipart/form-data", |
380 | 380 |
}, |
--- client/views/pages/teacher/TextDetail.vue
+++ client/views/pages/teacher/TextDetail.vue
... | ... | @@ -197,7 +197,7 @@ |
197 | 197 |
} |
198 | 198 |
|
199 | 199 |
const fileUploadResponse = await axios.post( |
200 |
- "http://localhost:9080/file/upload.json", |
|
200 |
+ "http://165.229.169.113:9080/file/upload.json", |
|
201 | 201 |
formData, |
202 | 202 |
{ |
203 | 203 |
headers: { |
--- client/views/pages/teacher/TextInsert.vue
+++ client/views/pages/teacher/TextInsert.vue
... | ... | @@ -138,7 +138,7 @@ |
138 | 138 |
} |
139 | 139 |
|
140 | 140 |
const fileUploadResponse = await axios.post( |
141 |
- "http://localhost:9080/file/upload.json", |
|
141 |
+ "http://165.229.169.113:9080/file/upload.json", |
|
142 | 142 |
formData, |
143 | 143 |
{ |
144 | 144 |
headers: { |
--- client/views/pages/teacher/VocaDetail.vue
+++ client/views/pages/teacher/VocaDetail.vue
... | ... | @@ -349,7 +349,7 @@ |
349 | 349 |
} |
350 | 350 |
|
351 | 351 |
try { |
352 |
- const response = await axios.post("http://localhost:9080/file/upload.json", formData, { |
|
352 |
+ const response = await axios.post("http://165.229.169.113:9080/file/upload.json", formData, { |
|
353 | 353 |
headers: { |
354 | 354 |
"Content-Type": "multipart/form-data", |
355 | 355 |
}, |
--- client/views/pages/teacher/VocaInsert.vue
+++ client/views/pages/teacher/VocaInsert.vue
... | ... | @@ -275,7 +275,7 @@ |
275 | 275 |
} |
276 | 276 |
|
277 | 277 |
try { |
278 |
- const response = await axios.post("http://localhost:9080/file/upload.json", formData, { |
|
278 |
+ const response = await axios.post("http://165.229.169.113:9080/file/upload.json", formData, { |
|
279 | 279 |
headers: { |
280 | 280 |
"Content-Type": "multipart/form-data", |
281 | 281 |
}, |
--- client/views/pages/teacher/noticeInsert.vue
+++ client/views/pages/teacher/noticeInsert.vue
... | ... | @@ -128,7 +128,7 @@ |
128 | 128 |
} |
129 | 129 |
|
130 | 130 |
const fileUploadResponse = await axios.post( |
131 |
- "http://localhost:9080/file/upload.json", |
|
131 |
+ "http://165.229.169.113:9080/file/upload.json", |
|
132 | 132 |
formData, |
133 | 133 |
{ |
134 | 134 |
headers: { |
... | ... | @@ -173,7 +173,7 @@ |
173 | 173 |
} |
174 | 174 |
|
175 | 175 |
const fileUploadResponse = await axios.post( |
176 |
- "http://localhost:9080/file/upload.json", |
|
176 |
+ "http://165.229.169.113:9080/file/upload.json", |
|
177 | 177 |
formData, |
178 | 178 |
{ |
179 | 179 |
headers: { |
Add a comment
Delete comment
Once you delete this comment, you won't be able to recover it. Are you sure you want to delete this comment?