OS/Linux 144

git command

git add -A stages Allgit add . stages new and modified, without deletedgit add -u stages modified and deleted, without new[git tag] git tag -a v1.4 -m "my version 1.4" 비밀번호를 매번 입력하지 않아도 된다HTTPS URL로 시작하는 리모트 저장소를 사용한다면 아마도 Push 나 Pull을 할 때 인증을 위한 사용자 이름이나 비밀번호를 묻는 것을 볼 수 있다. 보통 터미널에서 작업하는 경우 Git이 이 정보를 사용자로부터 받기 위해 사용자 이름이나 비밀번호를 입력받아 서버로 전달해서 권한을 확인한다.이 리모트에 접근할 때마다 매번 ID나 비밀번호를 입력하지 않도록 “credi..

OS/Linux 2015.12.02

Haproxy 를 이용한 https Redirect

https를 redirect 하는 경우 일반 방식을 설정은 안되고, ssl의 추가 분이 필요하다. 1. Haproxy config 설정 [haproxy.conf] frontend www-https bind *:8445 ssl crt /home/sncap/cert/server.pem #reqadd X-Forwarded-Proto:\ https default_backend www-backend backend www-backend redirect scheme https if !{ ssl_fc } server www-stg 192.168.2.71:443 ssl ca-file /home/sncap/cert/cellwe.pem #server www-stg 191.168.2.71:443 check 2. Ca-Cert..

OS/Linux 2015.11.05

self-signed CA 인증서 생성 및 설치

[사설 CA인증서 생성 및 설치]1. CA인증서 생성1) root ca key 생성# openssl genrsa -aes256 -out rootca.key 2048#> Enter pass phrase for rootca.key: Hellwe#> Verifying - Enter pass phrase for rootca.key: Hellwe2) ca 인증서 생성# openssl req -new -key rootca.key -out rootca.csr -subj "/C=KR/ST=Seoul/L=Seoul/O=AAAA AAA/OU=ioffice/CN=cellwe/emailAddress=aaa@bbb.com" #> Enter pass phrase for rootca.key: Hellwe3) 10년짜리 self-s..

OS/Linux 2015.08.07

Linux disabling proguard

proguard의 config는 아래와 같이 설정되어 있다. proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt 해당 파일의 마지막에 아래 내용추가하면proguard 가 disable 된다. -dontobfuscate 이렇게되면 아래처럼 변경됨..[AS-IS]-release-obfuscation-check: [echo] proguard.config is /home/jenuser/android-sdk-linux/tools/proguard/proguard-android.txt:proguard-project.txt [echo] Proguard.config is enabled [TO-BE]-release-obfuscation-check: [echo] ..

OS/Linux 2015.04.29