nginx配置完后
摘要:nginx配置完后,不用重启,直接刷新就可以
阅读全文
posted @
2021-09-03 22:10
咏竹莉
阅读(51)
推荐(0) 编辑
mac 安装nginx
摘要:安装工具 homebrew (之前本机已安装) 安装nginx 1. 打开终端: brew update 2. 查看nginx是否存在 brew search nginx 3. 查看nginx信息 brew info nginx 4. 若无nginx,开始安装: brew install nginx
阅读全文
mac 打包文件在nginx上运行
摘要:1. 想本地启动打包后的文件,需要本地安装nginx 具体安装步骤百度,本机已安装 安装步骤:[https://www.cnblogs.com/tandaxia/p/8810648.html](https://www.cnblogs.com/tandaxia/p/8810648.html) 2. 打
阅读全文
posted @
2021-07-08 10:29
咏竹莉
阅读(135)
推荐(0) 编辑
nginx 配置及反向代理
摘要:nginx 配置 events { worker_connections 1024; } http { include mime.types; default_type application/octet-stream; sendfile on; keepalive_timeout 65; serv
阅读全文