Nginx安装手册以及图片服务器部署

时间:2022-09-19 08:41:17

1.      安装gcc

yum install gcc

 

2.      安装pcre,pcre-devel

在zhoulh目录下建立source build目录

mkdir source build

进入build目录

创建pcre目录

cd pcre

 

wget ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/pcre-8.35.zip

pcre的版本随着时间可能会变动,可以进入

ftp://ftp.csx.cam.ac.uk/pub/software/programming/pcre/查看最新版本

解压缩压缩包

unzip pcre-8.35.zip

 

进入pcre目录

cd pcre-8.35

执行第一步:./configure

执行第二步:make

执行第三部:make install

 

3.      安装nginx

cd source

下载nginx版本

最新版本可以到http://nginx.org/download/查看


 Nginx安装手册以及图片服务器部署

解压缩

 Nginx安装手册以及图片服务器部署

运行configure,如下命令:

Nginx安装手册以及图片服务器部署

开始编译:

 Nginx安装手册以及图片服务器部署

开始安装

 Nginx安装手册以及图片服务器部署

启动nginx

Nginx安装手册以及图片服务器部署

输入http://ip

显示如下画面,如果未出现如下画面,则查看/etc/sysconfig/iptables文件是否开放80端口

 Nginx安装手册以及图片服务器部署


以下步骤部署图片服务器

1.      修改nginx.conf文件

Nginx安装手册以及图片服务器部署

修改如下

user  root;
worker_processes 1;

error_log logs/error.log;
#error_log logs/error.log notice;
#error_log logs/error.log info;

#pid logs/nginx.pid;


events {
worker_connections 1024;
}


http {
include mime.types;
default_type application/octet-stream;

#log_format main '$remote_addr - $remote_user [$time_local] "$request" '
# '$status $body_bytes_sent "$http_referer" '
# '"$http_user_agent" "$http_x_forwarded_for"';

#access_log logs/access.log main;

sendfile on;
#tcp_nopush on;

#keepalive_timeout 0;
keepalive_timeout 65;

#gzip on;

server {
listen 80;
server_name localhost;

#charset koi8-r;

#access_log logs/host.access.log main;

location / {
root html;
index index.html index.htm;
image_filter test;
#image_filter resize $arg_w $arg_h;
#image_filter crop $arg_w $arg_h;
#image_filter rotate $arg_r;
#alias /usr/local/nginx/html/image/;
}

resize为重定义图片显示大小 crop为切图 rotate为旋转r度,r必须为90的整数

如:http://192.168.3.158/image/1.jpg?r=180
2.      测试nginx.conf文件是否正确 

Nginx安装手册以及图片服务器部署

3.      重启nginx

Nginx安装手册以及图片服务器部署

4.      输入地址查看图片

Nginx安装手册以及图片服务器部署