http{ #虚拟主机1 server{ listen 80; #监听端口,基于IP配置的时候变更此处,比如192.168.1.100:8080; server_name www.xdw.com; #主机域名,实际项目发布的话,填公网上的域名,本地部署的话,可以在C:Windows/System32/drivers/etc/hosts文件中添加IP和域名的映射 location / { #映射解析,/代表根路径,此处解析还有正则表达式的解析方式,具体请参考http://tengine.taobao.org/nginx_docs/cn/docs/http/ngx_http_core_module.html#location root E:/aaa/bbb; #工程所在路径 index index.html index.htm; #首页(默认页) } }
#虚拟主机2,可以同时配置多个虚拟主机 server{ listen 8080; server_name localhost; location /demo/ { #此时访问地址为 http://localhost:80/demo/ 指向 D:/aaa/bbb/demo/ 匹配规则参考:https://blog.csdn.net/qq_38526573/article/details/106232388
root D:/aaa/bbb;
index index.html index.htm;
}
}
}
#一些关键字说明:
include mime.types; #文件扩展名与文件类型映射表 default_type application/octet-stream; #默认文件类型 sendfile on; #开启高效文件传输模式,sendfile指令指定nginx是否调用sendfile函数来 输出文件,对于普通应用设为 on,如果用来进行下载等应用磁盘IO重负载应用,可设置 为off,以平衡磁盘与网络I/O处理速度,降低系统的负载。注意:如果图片显示不正常 把这个改成off。 autoindex on; #开启目录列表访问,合适下载服务器,默认关闭。 tcp_nopush on; #防止网络阻塞 tcp_nodelay on; #防止网络阻塞 keepalive_timeout 120; #长连接超时时间,单位是秒 gzip on; #开启gzip压缩输出
配置stream转发参考: https://www.cnblogs.com/hahaha111122222/p/15347228.html
实现HTTP负载均衡和TCP负载均衡 https://www.bbsmax.com/A/A7zgqKLP54/
nginx常用命令与问题解决 https://blog.csdn.net/weixin_39309258/article/details/119248325
Nginx 反向代理、负载均衡、页面缓存、URL重写及读写分离详解 https://blog.51cto.com/freeloda/1288553
标签:index,完善,http,配置,server,nginx,https,com From: https://www.cnblogs.com/ruber/p/16936638.html