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
相关推荐
Run_Teenage1 小时前
Linux:线程互斥,线程锁
运维·开发语言·jvm
无所事事O_o1 小时前
JAVA应用不定时卡顿问题排查过程记录
java·优化
幸福巡礼1 小时前
【LangChain 1.2 实战(八)】Agent Middleware 实战 —— 动态路由、监控、安全与容错
java·安全·langchain
DigitalOcean1 小时前
DigitalOcean VPC 网络故障排查 Runbook 实战指南
运维·服务器
嵌入式×边缘AI:打怪升级日志2 小时前
Tina SDK Linux Kernel 基本使用(实战篇:为开发板添加用户按键驱动支持)
linux·运维·服务器
Byron__2 小时前
Java JVM核心知识点复习笔记
java·jvm·笔记
我是Superman丶2 小时前
Docker 命令自用
运维·docker·容器
程序员小白条2 小时前
别盲目卷算法!2026 程序员\&大学生,最稳的 AI 技术进阶路线全梳理
java·网络·人工智能·网络协议·http·面试
启山智软2 小时前
【 商城系统源码:Java与PHP的区别】
java·开发语言·php