分类

链接

2026 年 5 月
 123
45678910
11121314151617
18192021222324
25262728293031

近期文章

热门标签

新人福利,免费薅羊毛

nginx反向代理wss

先上NGINX配置: worker_processes  1; events {     worker_connections  1024; } http {     include       mime.types;     default_type  application/octet-stream;     sendfile        on;     keepalive_timeout  65;     server {         listen       443 ssl http2;         server_name  localhost;         ssl_certificate      aa.pem;         ssl_certificate_key  aa.key;         ssl_session_cache    shared:SSL:1m;         ssl_session_timeout  5m;         ssl_protocols TLSv1TLSv1....

.NET 评论(7) 阅读(1,433)