随笔分类 -  Nginx

代理学习
摘要:1.Nginx 状态码配置和错误文件 server { # 配置访问 /test.js 时报 403 错 location /test.js { return 403; } # 配置访问 /404 时报 404 错 location /404 { return 404; } # 配置访问 /500 阅读全文
posted @ 2020-04-29 00:22 纵码万水千山 阅读(1311) 评论(0) 推荐(0) 编辑
摘要:Nginx 路由转发配置笔记 由于预算有限,只有一台服务器,想要玩的东西不少,所以这个台服务器上会提供多重服务,因此涉及到的nginx转发就必有重要了 由nginx做请求代理,提供多种服务 php搭建的网站 hexo创建的博客系统 spring-boot & tomcat搭建的后台 静态网页 本片配 阅读全文
posted @ 2020-04-27 00:24 纵码万水千山 阅读(12834) 评论(0) 推荐(0) 编辑
摘要:mac中使用brew install 安装nginx /usr/local/bin/nginx #启动 /usr/local/bin/nginx -s reload #平滑重启 /usr/local/etc/nginx/nginx.cnf #配置文件。 nginx -t -c /usr/nginx/ 阅读全文
posted @ 2017-11-28 00:38 纵码万水千山 阅读(165) 评论(0) 推荐(0) 编辑