nginx 解析静态内容demo

1. OpenResty 安装配置

OpenResty 安装配置请参考:OpenResty 安装配置

2. 创建静态资源

mkdir -p /data/www/
touch index.html
注:index.html 内容如下:

<!DOCTYPE html>
<html>

<head>
<meta charset="UTF-8">
<title>Insert title here</title>
</head>

<body>
这是一个 nginx 静态资源解析测试页面
</body>
</html>

mkdir -p /data/images
注:上传一张图片到 /data/images 目录中,例如:test.png

3. 创建 nginx 配置文件

1. 备份 nginx.conf 文件
# cd /usr/local/openresty/nginx/nginx/conf
# cp nginx.conf nginx.conf.bak
# cat /dev/null > nginx.conf
# vi nginx.conf
# openresty -s reload

nginx.conf 中内容如下:

#user  nobody;
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 {
        server {
                listen 8989;
                location / {
                        root /data/www;
                }
                location /images/ {
                        root /data;
                }
        }
}

4. 在浏览器中访问并验证

  1. 临时关闭防火墙
    systemctl stop firewalld
  2. 访问服务器静态页面 index.html,例如:
    http:172.16.160.133:8989
    index.html
  3. 访问服务器静态图片,例如:
    http:172.16.160.133:8989/images/sea-4002951.jpg
    访问图片静态资源
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值