You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
1.6 KiB
Markdown
37 lines
1.6 KiB
Markdown
### Start
|
|
```text
|
|
# java, tomcat 버전
|
|
java 1.8, tomcat 9.0
|
|
|
|
#배포 시 (BackEnd)
|
|
- application.yml 에서 active: prod 로 변경해서 ROOT.war 빌드
|
|
※※※예시※※※
|
|
spring:
|
|
application:
|
|
name: xit-framework
|
|
#description: XIT api for development
|
|
profiles:
|
|
active: prod
|
|
include: oauth
|
|
|
|
- 서비스 실행 후 apache-tomcat-9 simsa 관련 서비스 찾아서 중지
|
|
- D:\tools\was\apache-tomcat-9.0.31\webapps 에 war 백업 후 신규 파일 붙여넣기
|
|
- 서비스 실행 후 apache-tomcat-9 simsa 관련 서비스 시작
|
|
```
|
|
|
|
#### CORS 에러: The request client is not a secure context and the resource is in more-private address space `local`.
|
|
```text
|
|
공인 IP대역에서 http POST 요청으로 text 타입 데이타 전송시 발생
|
|
|
|
웹서비스를 개발 하던 중 위와 같은 에러를 만났다.
|
|
서버 응답에 Access-Control-Allow-Origin: * 와 같은 CORS 허용 헤더를 다 넣어줬지만,
|
|
위와 같은 에러가 계속 발생했다. 알고보니 origin 보다, 더 낮은 수준의 네크워크로 요청을 보내는 경우,
|
|
위와같이 에러를 발생한다.
|
|
|
|
이를 해결하기 위해서는 브라우져 설정에서, 위와 같은 제한을 해제해주어야 한다.
|
|
그리고 당연한 소리겠지만, 운영 환경에서는 위와 같은 상황이 발생하면 안된다.
|
|
|
|
크롬의 경우: chrome://flags/#block-insecure-private-network-requests 에 들어가서 설정 disabled
|
|
엣지의 경우: edge://flags/#block-insecure-private-network-requests 에 들어가서 설정 disabled
|
|
```
|