[PR]
×
[PR]上記の広告は3ヶ月以上新規記事投稿のないブログに表示されています。新しい記事を書く事で広告が消えます。
ブログ移転?しました エックスサーバを契約してみたので、 いろいろカスタマイズできそうなWordPressを使って ブログを作ってみました。 https://gametech.vatchlog.com/ 多分こちらでも同じような記事を書いていくと思います。
プログラミングとか徒然を書いていた(過去形)
[PR]上記の広告は3ヶ月以上新規記事投稿のないブログに表示されています。新しい記事を書く事で広告が消えます。
# yum install pcre pcre-devel zlib zlib-devel openssl openssl-devel
# cd /usr/local/src
# wget http://nginx.org/download/nginx-1.7.7.tar.gz
# cd /usr/local/src
# wget https://github.com/openresty/echo-nginx-module/archive/v0.56.tar.gz
# cd /usr/loca/src
# tar zxvf nginx-1.7.7.tar.gz
#tar zxvf v0.56.tar.gz
# cd /usr/local/src/nginx-1.7.7
# ./configure --prefix=/usr/local/nginx-1.7.7 --with-http_ssl_module --add-module=../echo-nginx-module-0.56
# make
# make install
# ln -s /usr/local/nginx-1.7.7/sbin/nginx /usr/sbin/nginx
# ln -s /usr/local/nginx-1.7.7/conf /etc/nginx
# vi /etc/init.d/nginx
# /etc/init.d/nginx configtest
# vi /etc/nginx/nginx.conf
location /echo_test{
echo_sleep 3;
echo Test OK!
}
# curl http://localhost/echo_test