263

263

V2EX 第 111351 号会员,加入于 2015-04-16 22:29:22 +08:00
今日活跃度排名 581
不迫,出点东西。。。。
  •  1   
    二手交易  •  263  •  2020-08-25 17:23:07 PM  •  最后回复来自 wzq001
    8
    迫生,出点东西。
    二手交易  •  263  •  2019-05-16 16:16:35 PM  •  最后回复来自 ybz
    1
    魔都出个 iPhone 6 plus 64G 深空灰+罗技 MX MASTER
    二手交易  •  263  •  2016-05-05 22:31:44 PM  •  最后回复来自 bleaker
    7
    263 最近回复了
    20 小时 47 分钟前
    回复了 ztq100 创建的主题 SSH 求一个 mac 下的 ssh 终端管理软件,刚需多开和广播输入
    SecureCRT
    process-exporter 正则匹配

    ```
    process_names:
    - name: "{{.Comm}}:{{.Matches.ServerId}}"
    comm:
    - gmserver
    cmdline:
    - -C/data/code/(?P<ServerId>[0-9]+)/server.cfg

    - name: "{{.Comm}}:{{.Matches.ServerId}}"
    comm:
    - terrace
    cmdline:
    - -D/data/terrace/terrace_(?P<ServerId>[0-9]+)

    - name: "charge:{{.Comm}}:{{.Matches.ServerId}}"
    comm:
    - u3d-server
    cmdline:
    - -c(?P<ServerId>[0-9]+)

    - name: "ctrl:{{.Comm}}:{{.Matches.ServerId}}"
    comm:
    - u3d-server
    cmdline:
    - -w(?P<ServerId>[0-9]+)
    ```
    3 天前
    回复了 freaks 创建的主题 DevOps 遇到一点证书问题,望运维大佬给看看
    先要搞清楚证书的类型,普通通配域名你需要签两个 example.com *.example.com

    https://www.wosign.com/column/ssl_20211231.htm
    12 天前
    回复了 TashinV 创建的主题 WireGuard Wireguard 自动重连的问题
    点对点的话,其实在 peer 设置一下 keepalive 就能自动处理了,不过具体表现要看设备。
    大概率是 adguard 的拦截规则和 surge reject 冲突了,二者选其一。
    传统机房那看谈的价格咯,5M 和 10M 能谈一样的价格,肯定选高的,
    看你这量,你应该选按量计费或者共享带宽包,带宽可以先设置 50M ,有需求随时可以升降配,带宽太低了,偶尔传个文件都费力。
    你的域名( example.com )如果只解析到了 Cloudflare CDN 的 cname ,你只需要限制默认主机名。

    如果有内网访问需求,server_name 需要加上自己的内网主机名或者 ip 。

    下面的配置:

    server {
    listen 80 default_server;
    server_name _;
    return 444;
    }

    server {
    listen 443 default_server;
    server_name _;
    ssl_certificate /etc/nginx/ssl/xxx.com.pem;
    ssl_certificate_key /etc/nginx/ssl/xxx.com.key;
    return 444;
    }
    关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   实用小工具   ·   3545 人在线   最高记录 6679   ·     Select Language
    创意工作者们的社区
    World is powered by solitude
    VERSION: 3.9.8.5 · 13ms · UTC 04:41 · PVG 12:41 · LAX 20:41 · JFK 23:41
    Developed with CodeLauncher
    ♥ Do have faith in what you're doing.