Nginx下构建PC站点

Nginx下构建PC站点

总结整个实验

  • 先给 Nginx 配置 "规则文件夹"(conf.d),让它能加载我们写的网站规则;

  • 用root做 "路径拼接":网址路径拼上 root

  • 路径,找到对应文件(适合常规网站目录);

  • 用alias做 "路径替换":网址路径直接换成 alias 的路径(适合网址路径和实际文件路径不一样的场景);

  • 每改一次规则,都要重启 Nginx 让规则生效;

  • 用curl命令模拟访问,验证规则是否正确。

整个实验的目的就是让你明白:Nginx 的root和alias是怎么把 "用户输入的网址" 和 "服务器里的文件" 关联起来的,这是搭建网站最基础也最核心的一步

1.location中的root

复制代码
[root@Nginx conf]# cd /usr/local/nginx/conf/
[root@Nginx conf]# mkdir  conf.d
[root@Nginx conf]# vim nginx.conf
82     include "/usr/local/nginx/conf/conf.d/*.conf";

[root@Nginx conf]# nginx -s reload
[root@Nginx conf]# cd conf.d/

[root@Nginx ~]# mkdir  -p /webdata/nginx/timinglee.org/lee/html
[root@Nginx ~]# echo lee.timinglee.org > /webdata/nginx/timinglee.org/lee/html/index.html

[root@Nginx conf.d]# vim vhosts.conf
server {
    listen 80;
    server_name lee.timinglee.org;
    location / {
        root /webdata/nginx/timinglee.org/lee/html;
    }
}

root@Nginx conf.d]# systemctl restart nginx.service

#测试
[root@Nginx conf.d]# vim /etc/hosts
172.25.254.100     Nginx www.timinglee.org lee.timinglee.org

[root@Nginx conf.d]# curl  www.timinglee.org
timinglee
[root@Nginx conf.d]# curl  lee.timinglee.org
lee.timinglee.org



#local示例需要访问lee.timinglee.org/lee/目录
[root@Nginx conf.d]# vim vhosts.conf
server {
    listen 80;
    server_name lee.timinglee.org;
    location / {
        root /webdata/nginx/timinglee.org/lee/html;
    }
    location /lee {			#lee标识location中的root值+location 后面指定的值代表目录的路径
        root /webdata/nginx/timinglee.org/lee/html;
    }
    
}

[root@Nginx conf.d]# systemctl restart nginx.service
[root@Nginx conf.d]# mkdir  -p /webdata/nginx/timinglee.org/lee/html/lee
[root@Nginx conf.d]# echo lee > /webdata/nginx/timinglee.org/lee/html/lee/index.html
[root@Nginx conf.d]# curl  lee.timinglee.org/lee/
lee

2.location中的alias

复制代码
[root@Nginx conf.d]# vim vhosts.conf
server {
    listen 80;
    server_name lee.timinglee.org;

    location /passwd {				#标识文件		
        alias /etc/passwd;
    }


    location /passwd/ {				#表示目录
        alias /mnt/;
    }

}

[root@Nginx conf.d]# nginx -s reload
[root@Nginx conf.d]# echo passwd > /mnt/index.html

#测试
[root@Nginx conf.d]# curl  lee.timinglee.org/passwd/
passwd
[root@Nginx conf.d]# curl  lee.timinglee.org/passwd
root:x:0:0:root:/root:/bin/bash
bin:x:1:1:bin:/bin:/sbin/nologin
daemon:x:2:2:daemon:/sbin:/sbin/nologin

问题:curl www.timinglee.org 为什么会被这个 server 处理?

  1. 你现在的配置里,没有 server_name www.timinglee.org; 对应的 server 块

    • 当请求的域名 www.timinglee.org 不匹配任何 server_name 时,Nginx 会使用默认 server
    • 你的配置里,只有一个 server 块,而且它是第一个,所以它就是默认 server
相关推荐
Refrain_zc19 小时前
Android 播放器进度条改造实践:句级音频列表映射秒级时间轴
java
我命由我1234519 小时前
Bugly - Bugly 基本使用( App 质量追踪平台)
android·java·java-ee·android studio·android jetpack·android-studio·android runtime
s_w.h19 小时前
【 linux 】文件系统
linux·运维·服务器·算法·bash
宋哥转AI19 小时前
Spring AI Graph:从0到Supervisor(一)RAG子图+Supervisor路由踩坑全记录
java·agent
Mahir0819 小时前
MyBatis 深度解密:从执行流程到底层原理全解
java·后端·面试·mybatis
duoduo_sing19 小时前
数据库备份终极方案:从脚本手动到自动化热备+异地同步实战
运维·数据库·自动化·用友
菜菜的顾清寒19 小时前
力扣hot100(37)栈-有效的括号
java·开发语言
罗超驿19 小时前
9.LeetCode 209. 长度最小的子数组 | 滑动窗口专题详解
java·算法·leetcode·面试
孟林洁19 小时前
Java转AI应用开发速成(3)—— 第一个 SpringAI 聊天应用
java·spring boot·后端·ai·机器人
Simon5231419 小时前
Spring AOP 五大通知类型
java·前端·spring