nginx配置
1. 安装
安装文档
2. http模块配置
http{
upstream a{
}
# root 表示http://localhost/ 查找html下的index.html页面
# root /usr/local/index 也可以用全路径
server {
listen 80
location / {
root index.html
}
}
}
nginx 安装及配置
阅读 37
2022-02-15
安装文档
http{
upstream a{
}
# root 表示http://localhost/ 查找html下的index.html页面
# root /usr/local/index 也可以用全路径
server {
listen 80
location / {
root index.html
}
}
}
相关推荐
精彩评论(0)