惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

月光博客
月光博客
Martin Fowler
Martin Fowler
博客园_首页
量子位
T
Tailwind CSS Blog
博客园 - Franky
G
Google Developers Blog
D
DataBreaches.Net
Vercel News
Vercel News
B
Blog
Recent Announcements
Recent Announcements
S
SegmentFault 最新的问题
M
MIT News - Artificial intelligence
爱范儿
爱范儿
博客园 - 【当耐特】
The Cloudflare Blog
H
Help Net Security
云风的 BLOG
云风的 BLOG
P
Proofpoint News Feed
C
Check Point Blog
有赞技术团队
有赞技术团队
Microsoft Security Blog
Microsoft Security Blog
酷 壳 – CoolShell
酷 壳 – CoolShell
freeCodeCamp Programming Tutorials: Python, JavaScript, Git & More

Microsoft Azure

Azure SG 挂了么? - V2EX Azure DevOps 挂了 Softether 如何桥接 Azure VM 的 Eth0? 账户 Azure OpenAI 服务被停用 北京联通最近反复打击 Azure CDN,原因不明 被 Azure OpenAI 给反撸了。。。 你们的 Azure 学生订阅的 OpenAI 的配额是不是都被降到 1 了 哪个第三方软件同时调用 azure 里不同版本的 gpt4 求支持 Azure 的 tts 应用和插件 Azure 的免费 Windows 用哪个镜像 Azure 服务产生费用但信用卡未扣费 从 Azure 下载的 ubuntu 磁盘镜像在 hyper-V 里启动遇到问题 Azure 萌新 请教如何限制费用 超过 xxxx 元就停止服务啥的~ 提醒下大家 Azure OpenAI 1106 版本计费异常要申请退费 咨询 azure 注册使用上一些基础问题,国内版和全球版? Azure 的 content_filter 有点迷啊 微软 Azure 基础知识学习成本高吗? Azure 有 api 吗? Azure 学生计划的 IP 地址可能将不再免费 请教下各位 Azure 的收费规则 Azure VM 怎么重装系统 Azure 的 12 个月免费 B1s 虚拟机每个月产生 USD 账单, 3 月发票$15.10 状态“付费版”实付$0, 4 月发票$25.04 状态“到期”说是信用卡扣费,会被扣费吗? azure 这延迟认真的吗? Azure 订阅被封禁了咋办 突发: Azure 日本已劣化三网去程线路 怎么使用 Azure 自定义语言模型 Azure 怎么查看剩余免费流量? Azure 免费流量为什么这么少(100G),流量为什么这么贵 有人会配置 Azure 的 GeoDNS 吗? Azure 香港绕日本了?
Azure Function 出现间歇性 Nginx 404 错误
Menci · 2021-03-06 · via Microsoft Azure

今天下午开始,网站的部分用户开始反馈打开网站看到了 Nginx 的 404 错误页面。

错误是间歇性的,不同用户(不同源 IP )的状况不一样。

我这里也复现了一次:

*   Trying 13.75.115.40...
* Connected to loj.ac (13.75.115.40) port 443 (#1)
* found 138 certificates in /etc/ssl/certs/ca-certificates.crt
* found 557 certificates in /etc/ssl/certs
* ALPN, offering http/1.1
* SSL connection using TLS1.2 / ECDHE_RSA_AES_256_GCM_SHA384
*        server certificate verification OK
*        server certificate status verification SKIPPED
*        common name: menci.moe (matched)
*        server certificate expiration date OK
*        server certificate activation date OK
*        certificate public key: RSA
*        certificate version: #3
*        subject: CN=menci.moe
*        start date: Sun, 20 Dec 2020 04:56:12 GMT
*        expire date: Sat, 20 Mar 2021 04:56:12 GMT
*        issuer: C=US,O=Let's Encrypt,CN=R3
*        compression: NULL
* ALPN, server did not agree to a protocol
> GET / HTTP/1.1
> Host: loj.ac
> User-Agent: curl/7.47.0
> Accept: */*
> 
< HTTP/1.1 404 Not Found
< Content-Length: 162
< Content-Type: text/html
< Server: nginx
< Date: Sat, 06 Mar 2021 12:55:56 GMT
< 
<html>
<head><title>404 Not Found</title></head>
<body bgcolor="white">
<center><h1>404 Not Found</h1></center>
<hr><center>nginx</center>
</body>
</html>
* Connection #1 to host loj.ac left intact

我十分确定我的 Function App 在 GET 请求时不会返回 status 404 。并且我在 Function 里将所有 URL (包括根)都 Proxy 到了我定义的 Endpoint 上,不存在无效 URL 的问题。

MTR 和 HTTPS 证书都没有问题,排除网络路由的问题。


这是 Function App 的基本信息:

image.png

Azure 的诊断给出的 Log 里看不到任何错误:

image.png

Azure 无法新建支持请求,我就只好来 V2EX 了。

image.png