赵走x博客
网站访问量:151478
首页
书籍
软件
工具
古诗词
搜索
登录
5、nginx中的超时设置,请求超时、响应等待超时等
4、上传文件报413 Request Entity Too Large错误解决办法
3、mac安装nginx
2、免费的SSL语HTTPS部署流程
1、解决 nginx 出现 413 Request Entity Too Large 的问题
3、mac安装nginx
资源编号:76605
微服务
nginx实用技巧
热度:117
# 1、安装 ``` brew install nginx ``` # 2、检查nginx是否安装成功 在终端输入: ``` nginx -v ``` # 3、启动nginx,在终端输入: ``` brew services start nginx ``` # 4、检查nginx是否启动成功,在浏览器输入: ``` localhost:8080 ``` # 5、配置文件路径 ``` /usr/local/etc/nginx/nginx.conf ``` # 6、重新启动 ``` brew services restart nginx ```