This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
location ~ ^/image/.*(png|jpg|jpeg|gif|ico|swf)$ { | |
root /home/ubuntu/project/bolt25/upload; | |
break; | |
} | |
# /image/a.png 로 요청이 들어온 경우 root로 지정된 경로의 파일을 찾음 | |
# ex) /home/ubuntu/project/bolt25/upload/image.png |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
http://uip80.tistory.com/entry/24%EC%8B%9C%EA%B0%84-%EB%8F%99%EC%95%88-connection-%EC%98%A4%EB%A5%98-mysql |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<plugin> | |
<groupId>org.eclipse.jetty</groupId> | |
<artifactId>jetty-maven-plugin</artifactId> | |
<version>9.3.7.v20160115</version> | |
<configuration> | |
<httpConnector> | |
<port>8080</port> | |
<idleTimeout>30000</idleTimeout> | |
</httpConnector> | |
<scanIntervalSeconds>10</scanIntervalSeconds> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[7.1 Git맞춤 - Git 설정하기] | |
로컬 클라이언트 config 설정 / 서버 denyNonFastForwards 설정 관련 내용 | |
: https://git-scm.com/book/ko/v1/Git%EB%A7%9E%EC%B6%A4-Git-%EC%84%A4%EC%A0%95%ED%95%98%EA%B8%B0 | |
[7.4 Git맞춤 - 정책 구현하기] | |
서버훅 / 클라이언트훅(denyNonFastForwards 체크) | |
: https://git-scm.com/book/ko/v1/Git%EB%A7%9E%EC%B6%A4-%EC%A0%95%EC%B1%85-%EA%B5%AC%ED%98%84%ED%95%98%EA%B8%B0 | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# | |
# For each ref, validate the commit. | |
# | |
# - It disallows deleting branches without a /. | |
# - It disallows non fast-forward on branches without a /. | |
# - It disallows deleting tags without a /. | |
# - It disallows unannotated tags to be pushed. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
아래 사이트에 가서 다운로드 후 설치 한다. | |
https://github.com/Microsoft/Git-Credential-Manager-for-Windows/releases/tag/v1.2.1 | |
~/.gitconfig | |
[credential] | |
helper = manager | |
와 같이 설정 된다. | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
사용 | |
dependency:analyze | |
프로젝트내에서 정의되고 사용되는 dependency 들의 유형을 분석(사용되며 선언됨, 사용되고 선언되지 않음, 사용하지 않고 선언됨) | |
dependency:analyze-duplicate | |
프로젝트내에 중복된 dependency 들을 분석하여 출력 | |
[maven dependency plugin 참조 링크] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[스프링 부트 컬러 배너 제작사이트] | |
https://spring-boot-banner-gen.cfapps.io/banner |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
참고 링크 : | |
http://devofhwb.tistory.com/81 | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
리눅스민트 한글입력기 설정 | |
출처 : | |
http://idchowto.com/?p=11207 |