V2EX = way to explore
V2EX 是一个关于分享和探索的地方
现在注册
已注册用户请  登录
V2EX  ›  liuyinltemp  ›  全部回复第 2 页 / 共 12 页
回复总数  240
1  2  3  4  5  6  7  8  9  10 ... 12  
2022-10-17 09:33:56 +08:00
回复了 ililu 创建的主题 macOS Chrome 104 Mac 终于支持硬解 HEVC 了
m1 下 edge 有办法开启 hevc 吗?
2022-10-17 09:33:37 +08:00
回复了 ililu 创建的主题 macOS Chrome 104 Mac 终于支持硬解 HEVC 了
mac m1 上 safari 我看 B 站是支持 hevc 的,但是 edge 更新到 106 还是不行,mac 上 safari 插件太少,感觉不如 edge 好用
2022-10-16 21:45:15 +08:00
回复了 lazydao 创建的主题 问与答 求推荐笔记本电脑(需求预算清晰)
华为 matebook X pro ,macbook pro m1 不错。不玩游戏,预算建议花在屏幕上
2022-09-26 09:22:59 +08:00
回复了 GoodRui 创建的主题 NGINX 求 Nginx 大佬指点一下,关于反代 http 自动跳转 https 的
@GoodRui 是不是放在第二个 server ?
server {
listen 8888 ssl http2;
server_name bark.my.com;
error_page 497 =301 https://$host:$server_port$request_uri;
location / {
proxy_pass http://192.168.0.10:55002;
}
}
2022-09-16 16:06:54 +08:00
回复了 sdlzqjf 创建的主题 分享发现 收藏起来吧!一小时精讲第三期--docker
支持一下,nignx 坑还是蛮多的,不用不知道
2022-09-07 16:50:25 +08:00
回复了 liuyinltemp 创建的主题 NGINX nginx 反代 https 源站,为啥 upstream 源站变成 https://ip/XXX
源站补齐中间证书就好了
2022-09-05 09:44:59 +08:00
回复了 liuyinltemp 创建的主题 NGINX nginx 反代 https 源站,为啥 upstream 源站变成 https://ip/XXX
应该是源站的证书缺失了中间证书,这种情况有啥办法
2022-09-04 23:28:17 +08:00
回复了 liuyinltemp 创建的主题 NGINX nginx 反代 https 源站,为啥 upstream 源站变成 https://ip/XXX
又查了一下,应该是 vps 下访问源站有问题,但是证书又是对的。
2022-09-04 23:27:42 +08:00
回复了 liuyinltemp 创建的主题 NGINX nginx 反代 https 源站,为啥 upstream 源站变成 https://ip/XXX
curl: (60) SSL certificate problem: unable to get local issuer certificate
More details here: https://curl.se/docs/sslcerts.html

curl failed to verify the legitimacy of the server and therefore could not
establish a secure connection to it. To learn more about this situation and
how to fix it, please visit the web page mentioned above.
2022-09-02 17:27:20 +08:00
回复了 liuyinltemp 创建的主题 NGINX nginx 反代 https 源站,为啥 upstream 源站变成 https://ip/XXX
单独看反代后 js 是可以正常打开,现在就是进入 https://AAA.com/bbs/index.php 没有响应
2022-09-02 17:13:01 +08:00
回复了 liuyinltemp 创建的主题 NGINX nginx 反代 https 源站,为啥 upstream 源站变成 https://ip/XXX
@konsh 没有源站的证书
2022-09-02 15:56:48 +08:00
回复了 liuyinltemp 创建的主题 NGINX nginx 反代 https 源站,为啥 upstream 源站变成 https://ip/XXX
chrome F12 查看显示 Failed to load resource: net::ERR_HTTP2_PROTOCOL_ERROR
2022-09-02 09:45:35 +08:00
回复了 liuyinltemp 创建的主题 NGINX nginx 反代 https 源站,为啥 upstream 源站变成 https://ip/XXX
对了,还有一个特征,就是访问 https://AAA.com 是正常的,但是跳转 https://AAA.com/bbs/index.php 出现问题,只显示网页底色
2022-09-02 09:20:13 +08:00
回复了 liuyinltemp 创建的主题 NGINX nginx 反代 https 源站,为啥 upstream 源站变成 https://ip/XXX
up 一下,这个配置反代其他 https 域名没有问题
2022-09-01 23:13:27 +08:00
回复了 liuyinltemp 创建的主题 NGINX nginx 反代 https 源站,为啥 upstream 源站变成 https://ip/XXX
为啥 upstream 哪儿用 ip 替换了域名
2022-09-01 23:12:56 +08:00
回复了 liuyinltemp 创建的主题 NGINX nginx 反代 https 源站,为啥 upstream 源站变成 https://ip/XXX
@nulIptr 证书没有问题,
ssl_certificate cert/XXX.crt;
ssl_certificate_key cert/XXX.key;
2022-09-01 23:09:28 +08:00
回复了 liuyinltemp 创建的主题 NGINX nginx 反代 https 源站,为啥 upstream 源站变成 https://ip/XXX
server {
listen 443 ssl http2;
server_name BBB.com;
ssl_certificate cert/XXX.crt;
ssl_certificate_key cert/XXX.key;
resolver 8.8.8.8 1.1.1.1 valid=3600s;
resolver_timeout 3s;
set $backend https://AAA.com;
add_header Strict-Transport-Security "max-age=31536000;includeSubDomains" always;
add_header X-Frame-Options SAMEORIGIN;
add_header Referrer-Policy same-origin;
add_header X-Content-Type-Options nosniff;
proxy_set_header Early-Data $ssl_early_data;
location / {
proxy_redirect off;
proxy_pass $backend;
proxy_ssl_server_name on;
proxy_http_version 1.1;
proxy_set_header Connection "";
proxy_set_header Host AAA.com;
proxy_set_header Accept-Encoding "";
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-Proto $scheme;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Referer https://AAA.com;
}
}
2022-09-01 23:06:35 +08:00
回复了 liuyinltemp 创建的主题 NGINX nginx 反代 https 源站,为啥 upstream 源站变成 https://ip/XXX
反代源站 http 是没问题的,ip 也是源站的 ip ,https://数字 IP:443 这个是没法访问
2022-06-19 15:10:59 +08:00
回复了 johnsonyeen 创建的主题 Apple 假如本次 MacBook Pro 13 更新的是 intel 12 去掉 touch bar
@powergx 估计错了,目前的最新一代,今年 3 月刚配的,娱乐很不错,办公还是用我的华为 matebook x pro 2019
1  2  3  4  5  6  7  8  9  10 ... 12  
关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   我们的愿景   ·   实用小工具   ·   741 人在线   最高记录 6543   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 27ms · UTC 21:22 · PVG 05:22 · LAX 14:22 · JFK 17:22
Developed with CodeLauncher
♥ Do have faith in what you're doing.