feat: 로그 설정 추가, 찾아오시는길 지도 수정, 배포 스크립트 추가

This commit is contained in:
2026-04-20 18:08:49 +09:00
parent 58caeee062
commit c9d41ef288
5 changed files with 189 additions and 3 deletions

View File

@@ -20,6 +20,13 @@ logging:
level:
com.owrawww: WARN
org.springframework.security: WARN
file:
name: /home/www/owrainfo/logs/owrawww.log
logback:
rollingpolicy:
max-file-size: 10MB
max-history: 30
file-name-pattern: /home/www/owrainfo/logs/owrawww.%d{yyyy-MM-dd}.%i.log
app:
upload:

View File

@@ -97,7 +97,7 @@
<!-- 지도 -->
<div class="loc-map-wrap">
<div id="kakao-map"></div>
<div id="daumRoughmapContainer1776662318241" class="root_daum_roughmap root_daum_roughmap_landing" style="width:100%"></div>
</div>
</div>
@@ -184,6 +184,26 @@
</div>
<th:block layout:fragment="scripts">
<!-- * 카카오맵 - 지도퍼가기 -->
<!-- 1. 지도 노드 -->
<div id="" class="root_daum_roughmap root_daum_roughmap_landing"></div>
<!--
2. 설치 스크립트
* 지도 퍼가기 서비스를 2개 이상 넣을 경우, 설치 스크립트는 하나만 삽입합니다.
-->
<script charset="UTF-8" class="daum_roughmap_loader_script" src="https://ssl.daumcdn.net/dmaps/map_js_init/roughmapLoader.js" ></script>
<!-- 3. 실행 스크립트 -->
<script charset="UTF-8">
new daum.roughmap.Lander({
"timestamp": "1776662318241",
"key": "mzw6dkwyv7n"
}).render();
</script>
</th:block>
<script type="text/javascript" src="https://dapi.kakao.com/v2/maps/sdk.js?appkey=1b5048f6e460777f6b5737197cb6ca1b"></script>
<script>
var container = document.getElementById('kakao-map');
@@ -208,5 +228,4 @@
map.relayout();
map.setCenter(markerPosition);
});
</script>
</th:block>
</script>