2014-03-27から1日間の記事一覧

Nginx+git

gitインストール # sudo apt-get install git リポジトリ作成 # mkdir -p /var/git/repository/test.git # cd /var/git/repository/test.git # git --bare init --shared=group コミット # mkdir ~/test # cd ~/test # git init # echo "Hello git project" …

Nginxでオレオレ証明書

秘密鍵の作成 # openssl genrsa -out server.key -aes128 1024 Generating RSA private key, 1024 bit long modulus ..............++++++ ...........................................................................++++++ e is 65537 (0x10001) Enter …

Ubuntu 12.04.4 にSubversion1.8をインストール

ソースリストを新規追加 # vi /etc/apt/sources.list.d/svn.list deb http://opensource.wandisco.com/ubuntu precise svn18 GPG keyの追加 # wget http://opensource.wandisco.com/wandisco-debian.gpg # sudo apt-key add wandisco-debian.gpg OK パッケー…