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
直接访问就可以看到测试虚拟主机了