【Linux】Nginx一个域名https一个地址配置多个项目【项目实战】

server/2024/12/29 10:00:27/
http://www.w3.org/2000/svg" style="display: none;">

👨‍🎓博主简介

  🏅CSDN博客专家
  🏅云计算领域优质创作者
  🏅华为云开发者社区专家博主
  🏅阿里云开发者社区专家博主
💊交流社区:运维交流社区 欢迎大家的加入!
🐋 希望大家多多支持,我们一起进步!😄
🎉如果文章对你有帮助的话,欢迎 点赞 👍🏻 评论 💬 收藏 ⭐️ 加关注+💗


文章目录

  • 一个域名带https>https配置多个项目
  • 一个域名配置多个项目
  • 本机地址配置多个项目
  • 相关文章
  • 相关专栏

https>https://i-blog.csdnimg.cn/direct/3bd9ea87545b40689672ba0280112780.png#pic_center" alt="在这里插入图片描述" />

https>https_18">一个域名带https>https配置多个项目

①、首先将项目移动到html下;
②、将ssl证书移动到目的地;
③、然后进行nginx配置;

Nginx配置文件完整代码展示(主要在server段):


#user  root;
worker_processes 1;events {worker_connections 1024;
}http {include mime.types;default_type application/octet-stream;sendfile on;#tcp_nopush     on;#keepalive_timeout  0;keepalive_timeout 65;#gzip  on;server {listen 80;server_name test.top www.test.top;# HTTP 重定向到 HTTPSreturn 301 https>https://$host$request_uri;}server {listen 443 ssl;server_name test.top www.test.top;# SSL 配置ssl_certificate /usr/local/nginx/conf/ssl/test.top.pem;ssl_certificate_key /usr/local/nginx/conf/ssl/test.top.key;ssl_protocols TLSv1.2 TLSv1.3;ssl_ciphers 'TLS_AES_128_GCM_SHA256:TLS_AES_256_GCM_SHA384:ECDHE-ECDSA-AES128-GCM-SHA256:ECDHE-RSA-AES128-GCM-SHA256';ssl_prefer_server_ciphers on;# 设置错误页面error_page 404 /404.html;error_page 500 /500.html;location = /404.html {root /usr/local/nginx/html;internal;}location = /500.html {root /usr/local/nginx/html;internal;}# 定义项目根目录root /usr/local/nginx/html;# 默认访问 项目1 【如果不想用项目1,也可以自定义其他项目】location / {try_files $uri $uri/ /项目1/index.html;#			root   html;#			index  index.html index.htm;}# 项目1 项目location /项目1 {alias /usr/local/nginx/html/项目1;try_files $uri $uri/ /项目1/index.html;}# 项目2 项目location /项目2 {alias /usr/local/nginx/html/项目2;try_files $uri $uri/ /项目2/index.html;}# 项目3 项目location /项目3 {alias /usr/local/nginx/html/项目3;try_files $uri $uri/ /项目3/index.html;}}
}

这样页面访问时就可以是:https>https://test.top/项目1/https>https://test.top/项目2/https>https://test.top/项目3/

一个域名配置多个项目

①、首先将项目移动到html下;
②、然后进行nginx配置;

Nginx配置文件完整代码展示(主要在server段):


#user  root;
worker_processes 1;events {worker_connections 1024;
}http {include mime.types;default_type application/octet-stream;sendfile on;#tcp_nopush     on;#keepalive_timeout  0;keepalive_timeout 65;#gzip  on;server {listen 80;server_name test.top www.test.top;# 设置错误页面error_page 404 /404.html;error_page 500 /500.html;location = /404.html {root /usr/local/nginx/html;internal;}location = /500.html {root /usr/local/nginx/html;internal;}# 定义项目根目录root /usr/local/nginx/html;# 默认访问 项目1 【如果不想用项目1,也可以自定义其他项目】location / {try_files $uri $uri/ /项目1/index.html;#			root   html;#			index  index.html index.htm;}# 项目1 项目location /项目1 {alias /usr/local/nginx/html/项目1;try_files $uri $uri/ /项目1/index.html;}# 项目2 项目location /项目2 {alias /usr/local/nginx/html/项目2;try_files $uri $uri/ /项目2/index.html;}# 项目3 项目location /项目3 {alias /usr/local/nginx/html/项目3;try_files $uri $uri/ /项目3/index.html;}}
}

这样页面访问时就可以是:http://test.top/项目1/http://test.top/项目2/http://test.top/项目3/

本机地址配置多个项目

本机地址配置多个项目这个其实和一个域名配置多个项目是一样的,只不过把server_name的域名换成localhost就行。

具体操作如下:

①、首先将项目移动到html下;
②、然后进行nginx配置;

Nginx配置文件完整代码展示(主要在server段):


user root;
worker_processes 1;events {worker_connections 1024;
}http {include mime.types;default_type application/octet-stream;sendfile on;#tcp_nopush     on;#keepalive_timeout  0;keepalive_timeout 65;#gzip  on;server {listen 80;server_name localhost;# 设置错误页面error_page 404 /404.html;error_page 500 /500.html;location = /404.html {root /usr/local/nginx/html;internal;}location = /500.html {root /usr/local/nginx/html;internal;}# 定义项目根目录root /usr/local/nginx/html;# 默认访问 html/下的index.html页面location / {root html;index index.html index.htm;# 如果需要以项目1为默认页,可以把这个配置打开,上面的两个注释了就行;# try_files $uri $uri/ /项目1/index.html;}# 项目1 项目location /项目1 {alias /usr/local/nginx/html/项目1;try_files $uri $uri/ /项目1/index.html;}# 项目2 项目location /项目2 {alias /usr/local/nginx/html/项目2;try_files $uri $uri/ /项目2/index.html;}}
}

这样页面访问的是时候就可以是:ip/项目1/ip/项目2/

推荐一个优化nginx配置文件的页面:Nginx配置文件格式化

这里面还有很多格式化工具可以自己看看:https>https://tool.okcode.vip/

Nginx 404页面美化:Nginx 404页面美化

相关文章

文章标题文章连接
【Linux】nginx基础篇 – 介绍及yum安装nginxhttps>https://liucy.blog.csdn.net/article/details/133928000
【Linux】环境下部署Nginx服务 - 二进制部署方式https>https://liucy.blog.csdn.net/article/details/132145067
nginx配置负载均衡–实战项目(适用于轮询、加权轮询、ip_hash)https>https://liucy.blog.csdn.net/article/details/133986013
nginx快速部署一个网站服务 + 多域名 + 多端口https>https://liucy.blog.csdn.net/article/details/133986102
【Linux】Nginx一个域名https>https&一个地址配置多个项目【项目实战】https>https://liucy.blog.csdn.net/article/details/144442148

相关专栏

❀《Linux从入门到精通》专栏 ❀
❀《Nginx》专栏 ❀

🐋 希望大家多多支持,我们一起进步!😄
🎉如果文章对你有帮助的话,欢迎 点赞 👍🏻 评论 💬 收藏 ⭐️ 加关注+💗

文章来源:https://blog.csdn.net/liu_chen_yang/article/details/144442148
http://www.ppmy.cn/server/151591.html

相关文章

LDR6500 TYPE-C转DP双向互传方案解析

在当前的数字时代,投屏技术已成为连接不同设备、共享内容的常用手段。LDR6500 TYPE-C转DP双向互传方案应运而生,凭借其灵活性和高清视频传输能力,满足了现代数字生活对高效能和高清晰度的需求。 一、LDR6500概述 LDR6500是由乐得瑞科技针对…

XXE-labs靶场 XXE 靶机(通关攻略)

靶场搭建 随便输入一个账号密码登录 并用bp进行抓包 右击发送到重放器&#xff08;Reperter&#xff09; <?xml version"1.0"?> <!DOCTYPE foo [<!ENTITY xxe SYSTEM "php://filter/readconvert.base64-encode/resourcec:/flag/flag"> ]…

linux - 存储管理

1.了解硬件 -- 磁盘 硬盘有机械硬盘(HDD)和固态硬盘(SDD) 接下来&#xff0c;主要以机械磁盘为例(更具代表性&#xff0c;在linux系统层面&#xff0c;无论是机械磁盘还是固态硬盘&#xff0c;文件的读取和写入都iNode(索引节点)管理文件的元数据和实际数据块) 1.盘片&#x…

Springboot整合mybatis-plus使用pageHelper进行分页

PageHelper 使用步骤全解析 在进行 Web 应用开发时&#xff0c;经常会涉及到数据库数据的分页展示。PageHelper 是一个非常实用的 MyBatis 分页插件&#xff0c;它能够方便地实现数据库查询结果的分页功能&#xff0c;极大地提高了开发效率。以下将简单介绍 PageHelper 的使用…

libevent-Reactor设计模式【1】

一、Libevent概述 1、简介 Libevent 是一个用C语言编写的、轻量级的开源高性能事件通知库&#xff0c;主要有以下几个亮点&#xff1a;事件驱动&#xff08; event-driven&#xff09;&#xff0c;高性能;轻量级&#xff0c;专注于网络&#xff0c;不如 ACE 那么臃肿庞大&#…

0005.基于SpringBoot+LayUI客户关系管理系统

适合初学同学练手项目&#xff0c;部署简单&#xff0c;代码简洁清晰&#xff1b; 愿世界和平再无bug 项目介绍 CRM是指客户关系管理系统 。该系统主要利用SpringBootLayUI实现&#xff0c;项目的核心模块包括基础模块、营销管理模块、权限管理模块、客户管理模块、服务管理和统…

黑客如何找到App中的源IP:原理与防范

在移动互联网时代&#xff0c;应用程序&#xff08;App&#xff09;已经成为人们生活中不可或缺的一部分。然而&#xff0c;随着App的广泛应用&#xff0c;安全问题也日益受到关注。其中&#xff0c;源IP泄露是一个潜在的安全风险&#xff0c;可能导致服务器遭受攻击、敏感信息…

C语言动态内存管理【进阶--5--】

文章目录 [toc] 动态内存管理一、作用即意义二、动态内存函数的介绍Ⅰ、malloc()函数、free()函数Ⅱ、calloc()函数Ⅲ、realloc()函数 三、常见的动态内存错误Ⅰ、对NULL指针的解引用操作Ⅱ、对动态开辟空间的越界访问Ⅲ、对非动态开辟的内存使用free释放Ⅳ、使用free释放动态开…