“2021年10月”存档文章有18

AttributeError: 'str' object has no attribute 'items'

最近在使用 Python Redis 库的时候,出现了如下错误:AttributeError: 'str' object has no attribute 'items'具体错误代码:conn = self._redis.conn_redis() conn.zadd('delay', row_id, delay) conn.zadd('schedule:', row_id, time.time...

Nginx 访问日志:记录真实用户 IP 而不是代理 IP

如果您在代理或缓存引擎(如 Varnish 或 Squid)后面运行 Nginx,您将看到您的访问日志中充满了提及您的代理或缓存引擎的 IP 而非真实用户 IP 地址的行。要更改它,请在 http {} 部分的常规 nginx.conf 中添加以下行。log_format main '$http_x_forwarded_for - $remote_user [$time_local] ' '"...