'전체 글'에 해당되는 글 5건
- 2018.09.08 spring boot jsp 404 및 tiles 3 연동시 오류 처리 방법
- 2018.08.14 안드로이드 APP + fiddler HTTPS 패킷 스니핑
- 2018.08.07 Nginx의 사용자 지정 포트(비표준 포트)에서 HTTP에서 HTTP로 강제 리디렉션
intellij에서 실행시 오류날 경우
<dependency>
<groupId>org.apache.tomcat.embed</groupId>
<artifactId>tomcat-embed-jasper</artifactId>
<!--<scope>provided</scope>-->
<scope>compile</scope>
</dependency>
가 중요한듯
참조 :
jsp설정 : https://arturk9.wordpress.com/2017/02/22/springboot-how-to-enable-jsp-in-intellij/
https://intellij-support.jetbrains.com/hc/en-us/community/posts/115000088004-Project-with-SpringBoot-and-TilesConfigurer-
'스프링 > 인텔리J' 카테고리의 다른 글
hotswap 설정 (0) | 2018.05.29 |
---|
출처 : http://docs.telerik.com/fiddler/Configure-Fiddler/Tasks/ConfigureForAndroid#configure-fiddler
Configure Fiddler for Android / Google Nexus 7Configure Fiddler
Configure Nexus Device
To verify this configuration, go to http://ipv4.fiddler:8888/. Chrome should display the Fiddler Echo Service webpage, and the traffic should appear in Fiddler. 폰에서 접속해서 인증서를 저장한다. Disable the proxyAfter using Fiddler, return to the Proxy Settings screen above and remove the proxy. Decrypt HTTPS
To verify this configuration, tap Trusted credentials > User. This should display the Fiddler certificate. Disable HTTPS DecryptionTo delete the FiddlerRoot certificate, tap Trusted credentials > User and delete the certificate. |
---|
HTTP (표준 포트) 에서 HTTPS(표준 포트) 리다이렉션
참조 : https://ma.ttias.be/force-redirect-http-https-custom-port-nginx/
HTTP (비표준 포트) 에서 HTTPS(비표준 포트) 리다이렉션
Nginx의 사용자 지정 포트에서 HTTP에서 HTTP로 강제 리디렉션
비표준 포트로 SSL 사용시 Nginx 가상 호스트를 실행하는 경우 HTTP가없는 사이트를 탐색하면 다음 Nginx 오류가 발생합니다.
예를 들어 비표준 포트 (SSL을 사용하는 1234)에서 실행되는 이와 같은 가상 호스트는 해당 오류를 발생시킵니다.
고전적인 방법의 HTTP를 HTTP로 리디렉션
그러나 사용자 지정 포트에서 HTTP / SSL을 실행하는 경우에는 "안전하지 않은"포트가 없으므로이 트릭을 사용할 수 없습니다. 리디렉션 요청을 수신 할 수있는 포트가 없습니다.
비표준 포트에서 HTTPs 리디렉션 강제 수행
Nginx는 사용자 지정 HTTP 상태 코드 를 작성하여 497 이라는 HTTP 버전을 사용하여 HTTP를 통해 가상 호스트를 탐색하는 모든 사용자를 강제로 리디렉션 할 수있게합니다 .
이는 사용자 정의 포트에서 SSL을 실행하는 경우에만 필요합니다. 그렇지 않으면 위에 표시된 구성을 리디렉션에 사용할 수 있기 때문입니다.
브라우저에서 HTTP에서 HTTPs 포트로 리디렉션하도록하려면 다음을 수행하십시오.
이제 HTTP 프로토콜을 통해 사이트에 도달하는 모든 사용자는 HTTPs 버전으로 리디렉션됩니다.