linux创建网站

网站需求:

1.基于域名<www.openlab.com>可以访问网站内容为 welcome to openlab!!!

2.给该公司创建三个子界面分别显示学生信息,教学资料和缴费网站,基于<www.openlab.com/student> 网站访问学生信息,<www.openlab.com/data>网站访问教学资料 <www.openlab.com/money>网站访问缴费网站。

3.要求 (1)访问该网站http请求都通过https响应。

(2)学生信息网站只有song和tian两人可以访问,其他用户不能访问。

实现步骤:

一.准备工作

恢复快照

root@server \~\]# setenforce 0 \[root@server \~\]# systemctl stop firewalld \[root@server \~\]# systemctl disable firewalld \[root@server \~\]# dnf install nginx -y \[root@localhost \~\]# dnf install nginx httpd-tools -y \[root@server \~\]# systemctl start nginx # 启动nginx \[root@server \~\]# systemctl enable nginx # 设置开机启动 二.生成密码文件(song和tian) \[root@localhost \~\]# htpasswd -c /etc/nginx/passwd song New password: Re-type new password: Adding password for user song \[root@localhost \~\]# htpasswd /etc/nginx/passwd tian New password: Re-type new password: Adding password for user tian 三.创建openlab主页内容 \[root@localhost \~\]# vim /etc/nginx/conf.d/openlab.conf server { listen 80; server_name ; location /openlab{ alias /www/openlab/; index index.html } } 创建网页目录 \[root@localhost \~\]# mkdir -p /www/openlab 手动配置IP地址与域名的映射关系 \[root@localhost \~\]# vim /etc/hosts 192.168.88.129 建立https网站 制作私钥 \[root@localhost \~\]# openssl genrsa -aes128 2048 \> /etc/nginx/openlab.key Enter PEM pass phrase: Verifying - Enter PEM pass phrase: 制作证书 \[root@localhost \~\]# openssl req -utf8 -new -key /etc/nginx/openlab.key -x509 -days 365 -out /etc/nginx/openlab.crt Enter pass phrase for /etc/nginx/openlab.key: You are about to be asked to enter information that will be incorporated into your certificate request. What you are about to enter is what is called a Distinguished Name or a DN. There are quite a few fields but you can leave some blank For some fields there will be a default value, If you enter '.', the field will be left blank. Country Name (2 letter code) \[XX\]:86 State or Province Name (full name) \[\]:nanjing Locality Name (eg, city) \[Default City\]:nanjing Organization Name (eg, company) \[Default Company Ltd\]:openlab Organizational Unit Name (eg, section) \[\]:RHCE Common Name (eg, your name or your server's hostname) \[\]:server Email Address \[\]:[andy@qq.com](mailto:andy@qq.com) 在加载SSL支持的Nginx并使用上述私钥时除去必须的口令 \[root@server \~\]# cd /etc/nginx \[root@server nginx\]# cp openlab.key openlab.key.org \[root@server nginx\]# openssl rsa -in openlab.key.org -out openlab.key Enter pass phrase for ftp.key.org: # 输入加密私钥的密码 writing RSA key \[root@root \~\]# vim /etc/nginx/conf.d/openlab.conf # 编辑配置文件 server { listen 443 ssl; server_name ; ssl_certificate /etc/nginx/openlab.crt; ssl_certificate_key /etc/nginx/openlab.key; } 根据要求写入网页内容 location / { return 200 'welcome to openlab'; add_header Content-Type text/plain; } 强制 HTTP 跳转 HTTPS return 301 https://$host$request_uri ; 整个配置内容如下 ![](https://i-blog.csdnimg.cn/direct/0fb8fc8f7cd440c0a4cc6f7c6544dcd8.png) 重启 \[root@localhost \~\]# systemctl restart nginx 测试 ![](https://i-blog.csdnimg.cn/direct/8c263caec19a40848b11e76cf8722b0d.png) 创建子界面 \[root@localhost \~\]# vim /etc/nginx/conf.d/openlab.conf 学生信息页面,仅允许 song、tian 访问 location /student { auth_basic "Student Area"; auth_basic_user_file /etc/nginx/passwd; alias /www/openlab/student; index index.html; } 教学资料界面和缴费界面,所有人都能访问 location /data { alias /www/openlab/data; index index.html; } location /money { alias /www/openlab/money; index index.html; } 创建相关目录 \[root@localhost \~\]# mkdir -p /www/openlab/{student,data,money} 重启 \[root@localhost \~\]# systemctl restart nginx 完成后测试结果为: ![](https://i-blog.csdnimg.cn/direct/cc4de97a7a0046a2841828bebfa636fd.png) 综上,实验完成

相关推荐
云中飞鸿几秒前
虚拟机需要连外网,同时笔记本连接wlan,IP经常变,该怎么配置网络?
服务器·网络·tcp/ip
j_xxx404_1 分钟前
Linux:进程控制(创建/终止/等待/获取退出信息/多进程)
linux·运维·服务器
yuluo_YX3 分钟前
Alias for Linux/Mac
linux·elasticsearch·macos
冉佳驹11 分钟前
Linux ——— 磁盘存储原理与文件系统工作机制
linux·磁盘·硬链接·inode·软链接·磁盘线性化·目录的本质
BUG_MeDe14 分钟前
LINUX MTU/MSS(1500 1460等)的一些理解
linux·运维·服务器
风流倜傥唐伯虎15 分钟前
Windows 版 Docker 的 Linux 环境(docker-desktop)与 builder-jammy-base:latest 镜像核心区别
linux·docker·容器
曹牧15 分钟前
Nginx:正向代理与反向代理
运维·nginx
Ha_To17 分钟前
2026.1.30 搭建docker仓库
运维·docker·容器
lpfasd12319 分钟前
Docker Desktop 在国内使用的囧境:镜像拉取失败、加速器失效与破局之道
运维·docker·容器
江湖有缘24 分钟前
Docker部署SurveyKing调查问卷系统和考试系统
运维·docker·容器