hypermkt / playground

My playground. Sample codes, research.
12 stars 2 forks source link

blog.hypermkt.jp on Conoha 構築メモ #25

Open hypermkt opened 6 years ago

hypermkt commented 6 years ago
apt update
apt upgrade

ツール

apt install tree

Nginx

apt install nginx

MySQL

apt install mysql-server
mysql_secure_installtion

PHP7.1

apt-get install -y python-software-properties
add-apt-repository -y ppa:ondrej/php

apt install php7.1-fpm
apt install php7.1-mysql php7.1-xml

Memcached

apt install memcached
hypermkt commented 6 years ago

Conoha / Ubuntu16でプライベートIPの設定の仕方

ConoHa VPSでプライベートネットワークを構築してみた - ConoHaを使ってみた

hypermkt commented 6 years ago

app001, 3からmemcachedに接続できるようにする

apt install php-memcached

/etc/php/7.2/fpm/php.ini

[Session]
session.save_handler = memcached
session.save_path = "192.168.10.2:11211"