Skip to content

Instantly share code, notes, and snippets.

View inakadegaebal's full-sized avatar

JEONG JAESEOP inakadegaebal

  • 株式会社EFACTORYGUYS
View GitHub Profile
$ sudo yum remove docker docker-common docker-selinux docker-engine
@inakadegaebal
inakadegaebal / file0.txt
Last active March 8, 2017 06:19
自己証明書でnginxにSSL(TLS)対応する ref: http://qiita.com/inakadegaebal/items/29d21d1f5a904a6ba92d
# rpm -qa | grep openssl
openssl-devel-1.0.1e-60.el7_3.1.x86_64
openssl-libs-1.0.1e-60.el7_3.1.x86_64
openssl-1.0.1e-60.el7_3.1.x86_64
# sudo setenforce 0
# sudo getenforce
Permissive
@inakadegaebal
inakadegaebal / file0.txt
Last active February 26, 2017 11:41
Vagrantを使ってCentOS7をインストールする ref: http://qiita.com/inakadegaebal/items/654fabdbda1bcc42f6cb
>mkdir laravel_test
>cd laravel_test
>pwd
/cygdrive/c/dev/vagrant/laravel_test
@inakadegaebal
inakadegaebal / file0.txt
Last active February 26, 2017 10:51
CentOS7にGitLabをインストールする(既存nginxを使用) ref: http://qiita.com/inakadegaebal/items/3cc0603141a334fcc8af
# yum install curl policycoreutils openssh-server openssh-clients policycoreutils-python
@inakadegaebal
inakadegaebal / file0.txt
Last active February 4, 2017 07:03
CentOS7にComposerをインストールする ref: http://qiita.com/inakadegaebal/items/d370bcb1627fce2b5cd1
# php -r "copy('https://getcomposer.org/installer', 'composer-setup.php');"
@inakadegaebal
inakadegaebal / file1.txt
Last active February 3, 2017 14:58
CentOS7にMariaDB10.1をインストールする方法 ref: http://qiita.com/inakadegaebal/items/274e5719704ddb9465a4
yum install MariaDB-server MariaDB-client
@inakadegaebal
inakadegaebal / file0.txt
Last active February 3, 2017 13:40
Cento7にphp-fpmをインストールし、nginxと連携する ref: http://qiita.com/inakadegaebal/items/d59fa99d2ee66a4ffe98
# yum install nginx
@inakadegaebal
inakadegaebal / file0.txt
Last active May 25, 2016 14:51
CentOS7にPHP7をyumでインストールする ref: http://qiita.com/inakadegaebal/items/b57cf10339978d638305
# yum install epel-release
@inakadegaebal
inakadegaebal / file0.txt
Last active May 25, 2016 01:52
vagrantのPublic NetworksでIPを固定させる ref: http://qiita.com/inakadegaebal/items/7d32abea799957eaa018
config.vm.network "public_network", ip: "192.168.123.120"