<img th:src="${image.url}" alt="이미지"/>
image.url = https://eventor.store/postimage/20241124/134_502bc5d7-4b43-404c-8211-027acd6ff515.jpg
문제: 위 경로의 이미지가 제대로 출력되지 않는 오류 발생
원인: SSL 인증서를 www.eventor.store로 발급 받았고 리버스 프록시 설정을 eventor.store로 했기 때문에 도메인을 제대로 인식하지 못함
해결방법: DB Image 테이블의 url필드값의 데이터를 수정
https://www.eventor.store/postimage/20241124/134_502bc5d7-4b43-404c-8211-027acd6ff515.jpg
Nginx 설정
server {
listen 80;
server_name www.eventor.store;
client_max_body_size 10M;
# HTTP 요청을 HTTPS로 리다이렉트
return 301 https://$host$request_uri;
}