后视镜里的世界 越来越远的道别
你转身向背 侧脸还是很美
我用眼光去追 竟听见你的泪
在车窗外面徘徊 是我错失的机会
你站的方位 跟我中间隔着泪
街景一直在后退 你的崩溃在窗外零碎
我一路向北 离开有你的季节
你说你好累 已无法再爱上谁
风在山路吹 过往的画面全都是我不对
细数惭愧 我伤你几回
腊梅花
去年冬天我那洁白的腊梅花儿
这个冬天你是否还一样绽放
不论年轮流转
万物变迁…
时光
在阳光温暖的春天
走在这城市的人群中
在不知不觉的一瞬间
又想 起你……
你是记忆中最美的春天
是我难以再回去的昨天
你像鲜花那样地绽放
让我 心动……
We~~~say~~~~
We~~~say~~~~
We~~~say~~~~
We~~~say~~~~
继续阅读时光
Centos7下的LNMP源码安装
Part1:Install nginx
#为了源码能正常的编译运行先安装开发工具
yum group install “Development Tools”
wget ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-8.39.tar.gz
tar xvf pcre-8.39.tar.gz
cd pcre-8.39
./configure
make
make install
wget http://nginx.org/download/nginx-1.6.3.tar.gz
tar xvf nginx-1.6.3.tar.gz
cd nginx-1.6.3
[root@instance-1 nginx-1.6.3]# ./configure –prefix=/usr/local/nginx
#检查系统环境:
./configure: error: the HTTP gzip module requires the zlib library.
You can either disable the module by using –without-http_gzip_module
option, or install the zlib library into the system, or build the zlib library
statically from the source with nginx by using –with-zlib= option.
yum install -wget http://jp2.php.net/distributions/php-7.0.12.tar.gzy zlib-devel
make
make install
继续阅读Centos7下的LNMP源码安装