yum -y install gcc zlib zlib-devel pcre-devel openssl openssl-devel
cd /usr/local/
tar -zxvf nginx-1.20.1.tar.gz
./configure --with-http_ssl_module
编译参数有很多,这边我只增加了SSL模块,小伙伴可以根据自身情况调整
--prefix=PATH:指定 nginx 的安装目录
--conf-path=PATH:指定 nginx.conf 配置文件路径
--user=NAME:nginx 工作进程的用户
--with-pcre:开启 PCRE 正则表达式的支持
--with-http_ssl_module:启动 SSL 的支持
--with-http_stub_status_module:用于监控 Nginx 的状态
--with-http-realip_module:允许改变客户端请求头中客户端 IP 地址
--with-file-aio:启用 File AIO
--add-module=PATH:添加第三方外部模块
make
执行完上述命令后,在解压目录下,多出一个Makefile文件
make install
因编译时未指定安装目录,执行make install 命令后看到反馈日志信息,实际安装目录为/usr/local/nginx
进入实际安装目录,看看,并在其sbin目录下执行启动nginx
cd /usr/local/nginx/
浏览器访问 http://ip:80 , 显示如下图则代表部署成功
进入 /usr/local/nginx/conf/ 文件夹,找到nginx.conf 文件
worker_processes 1
events {
worker_connections 1024
}
http {
include mime.types
default_type application/octet-stream
sendfileon
keepalive_timeout 65
server {
listen 8088
server_name localhost
location ~ .*.(gif|jpg|jpeg|png|apk|pdf)$ {
expires 24h
root /usr/local/img/#指定图片存放路径
access_log /usr/local/nginx/logs/images.log#日志路径
proxy_store on
proxy_store_access user:rw group:rw all:rw
proxy_temp_path /usr/local/img/#代理临时路径
proxy_redirect off
}
修改配置文件,内容如上
cd /usr/local/nginx/sbin
./nginx -s reload
浏览器输入 http://ip:8088/1.png ,查看是否能正常显示图片
本文讲解Nginx安装后,nginx搭建静态资源web服务器需要的配置内容包括location,gzip,带宽限速等配置。添加上图中的配置后, 客户端访问 http://172.16.204.5:90/ 时, 会以树的格式展示mine_html中的所有文件. 使用这种方式可以很好的共享静态资源.
(1)Nginx系列教程(2)nginx搭建静态资源web服务器
https://yq.aliyun.com/articles/752950
欢迎分享,转载请注明来源:夏雨云
评论列表(0条)