listen 80; server_name localhost; # 访问"localhost"的全部请求会被转发到"localhost:81" # localhost => localhost:81 # localhost/a/ => localhost:81/a/ # localhost/b/ ...
分类:
其他好文 时间:
2021-01-21 10:52:23
阅读次数:
0
nginx proxy_pass 是支持带/ 的,同时对于不同的模式,会产生不同的效果, 整体总结(当然还有特殊情况) proxy_pass 带/的,使用的是绝对路径,请求格式会变成 http://$domainname:$port/proxy/$resource->http://$upstream ...
分类:
其他好文 时间:
2020-12-16 12:34:32
阅读次数:
2
https://ma.ttias.be/nginx-proxy-upstream-sent-big-header-reading-response-header-upstream/#:~:text=If%20the%20HTTP%20headers%20contain,configurations% ...
分类:
其他好文 时间:
2020-10-31 02:02:24
阅读次数:
15
实验环境: Centos7.4 x 4台 192.168.1.101 master 192.168.1.102 backup 192.168.1.103 web1 192.168.1.104 web2 漂移IP(即VIP):192.168.1.2501.关闭防火墙和SELINUX(略)2.配置本地y ...
分类:
系统相关 时间:
2020-07-22 02:15:37
阅读次数:
114
假设server_name为www.test.com当请求URL为http://www.test.com/zabbix/index.html时,以下示例的访问结果是示例1:location /zabbix/ { proxy_pass http://192.168.1.10;}结果1:http://1 ...
分类:
其他好文 时间:
2020-07-16 00:06:36
阅读次数:
128
解决bash-4.2问题在实际环境中,有时候会遇到登录的时候显示bash-4.2,无法正常进入系统,如下所示这是因为该登录用户缺少环境变量导致的,一般正常情况下家目录会有一些环境变量的隐藏文件,当这些文件被误删除后,就会显示这些![]故需要我们去/etc/skel目录下拷贝过去即可最好重新登录root即可
分类:
系统相关 时间:
2020-07-09 09:14:46
阅读次数:
78
原理实际行就是stream模式,因为nginx 支持基于stream 模式的lb同时支持(tcp.udp)以下是一个简单的配置 环境准备 docker-compose 文件 version: "3" services: lb: image: openresty/openresty:alpine vo ...
分类:
其他好文 时间:
2020-06-25 15:31:22
阅读次数:
79
本文记录了如何在Ubuntu/Docker中使用Alexey实现的C版YOLOv4在自己的数据集上进行训练与测试。 论文 : "YOLOv4: Optimal Speed and Accuracy of Object Detection" 代码 : 环境配置 建议使用docker容器配置环境,doc ...
分类:
其他好文 时间:
2020-04-29 20:07:27
阅读次数:
505
通过代理转发后,webapi的swagger无法访问,本质原因是代理后url路径发生变化导致/swagger无法定位到json。 相关issue: issue评论中,一般推荐通过PreSerializeFilters设置BasePath的方案,但在5.x版本中BasePath被删除了。最终选择使用设 ...
分类:
Web程序 时间:
2020-04-29 12:47:09
阅读次数:
131
环境: ip hostname software version OS port 192.168.1.120 nginx-proxy-master.gz01 nginx-1.8.1 CentOS Linux release 7.4.1708 (Core) 80 192.168.1.136 tomca ...
分类:
系统相关 时间:
2020-04-05 20:06:43
阅读次数:
90