Nginx基础篇-Nginx的虚拟主机

本文介绍了如何配置Nginx的基础设置,包括监听端口、服务器名称、网页字符类型、日志记录以及错误页面处理。同时,通过创建虚拟主机`test.com`,详细展示了虚拟主机的配置步骤,包括指定监听端口、服务器名称和定义主页。最后,通过修改`/etc/hosts`文件并访问`test.com`来验证虚拟主机配置成功。
摘要由CSDN通过智能技术生成

Nginx基础篇-Nginx的虚拟主机

配置文件

server {---默认网站配置文件
listen 80;---监听端口
server_name localhost;
	FQDN
#charset koi8-r;---网页字符类型
#access_log /var/log/nginx/host.access.log main;----日志
location / {
root /usr/share/nginx/html;---主目录
index index.html index.htm;---默认主页名
}
#error_page 404 /404.html;----错误页面
# redirect server error pages to the static page /50x.html
error_page 500 502 503 504 /50x.html;----错误页面
location = /50x.html {---错误页面
root /usr/share/nginx/html;---错误页面主目录
}
# proxy the PHP scripts to Apache listening on 127.0.0.1:80----代理设置
#location ~ \.php$ {
# proxy_pass http://127.0.0.1;
#}
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000----动态网站设置
#location ~ \.php$ {
# root html;
# fastcgi_pass 127.0.0.1:9000;
# fastcgi_index index.php;
# fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
# include fastcgi_params;
#}
# deny access to .htaccess files, if Apache's document root---访问控制部分
# concurs with nginx's one
#location ~ /\.ht {
# deny all;
#}
}

配置一个实验的虚拟主机

vim /etc/nginx/conf.d/test.conf
server{
listen 80;
server_name test.com;
location /{
root /test;
index index.html index.htm 2.html;
}
}
注释

server 虚拟主机
listen 监听端口
server_name 服务器名称
location 网站目录设置
root 网站主目录在本地的路径
index 主页文件名
http{} 是整个服务器,所有虚拟主机的设置。
server{}是某一个虚拟主机的设置
location{} 是某一个页面的设置。

mkdir /test
echo test > /test/index.html

重启服务

systemctl restart nginx
vim /etc/hosts
192.168.159.136 test.com

elinks http:test.com
直接访问就可以看到测试虚拟主机了

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值