xinzi 最近的时间轴更新
xinzi

xinzi

V2EX 第 492586 号会员,加入于 2020-06-01 13:43:50 +08:00
今日活跃度排名 17846
xinzi 最近回复了
3 天前
回复了 gotheway 创建的主题 Java 求一个技术架构
@vishun #33 我没推荐 我们之前用的若依前后端分离,zf 让我们出报告,一扫描都漏洞,我们能力差,修不了,就是这样,zf 还找了第三方,也是一样的,都是漏洞。
3 天前
回复了 gotheway 创建的主题 Java 求一个技术架构
zf 项目 不建议若依, 主要看是否上云还是进等保机房
若依 漏洞一大堆,后续处理会很麻烦
如果上公开云 比如阿里 腾讯 不在乎安全的 是没问题
一但 zf 要求你安全比如出安全报告,扫描报告,用若依 大概率是过不去的,有些漏洞自己修不了的
65 天前
回复了 austinuit 创建的主题 程序员 高度配置化的工作流系统有老板需要吗
感兴趣
登录不上
个人建议 开源+免费 pro 收费
比如向日葵
这样前期是有流量 openwrt 用户很多 恩山等论坛也会推
优势点在于是 国内 会很方便,zerotier ,netbird 自托管其实还是有一些门槛,用国外官方体验不好。
让更多的 openwrt 固件维护者 包含飞鼠
如果考虑商业 权限控制是最重要的
@ladypxy @Aluhao @darkengine @YaD2x @f1ush
感谢各位
找到问题了
nginx 有 2 哥配置文件 一个是 /etc/nginx/nginx.conf 一个是 /etc/nginx/conf.d/nginx.conf

因此
worker_processes auto; # 自动设置为 CPU 核心数
worker_rlimit_nofile 100000; # 增加每个 worker 进程可以打开的文件数

参数需要配置在 /etc/nginx/nginx.conf 而不是 /etc/nginx/conf.d/nginx.conf
这 2 个参数是全局参数
@Aluhao #5

/docker-entrypoint.sh: Launching /docker-entrypoint.d/10-listen-on-ipv6-by-default.sh
10-listen-on-ipv6-by-default.sh: info: /etc/nginx/conf.d/default.conf is not a file or does not exist
/docker-entrypoint.sh: Sourcing /docker-entrypoint.d/15-local-resolvers.envsh
/docker-entrypoint.sh: Launching /docker-entrypoint.d/20-envsubst-on-templates.sh
/docker-entrypoint.sh: Launching /docker-entrypoint.d/30-tune-worker-processes.sh
/docker-entrypoint.sh: Configuration complete; ready for start up
2024/08/19 17:26:52 [emerg] 1#1: "worker_processes" directive is not allowed here in /etc/nginx/conf.d/nginx.conf:1
nginx: [emerg] "worker_processes" directive is not allowed here in /etc/nginx/conf.d/nginx.conf:1


证书没问题

```
worker_processes auto; # 自动设置为 CPU 核心数
worker_rlimit_nofile 100000; # 增加每个 worker 进程可以打开的文件数

events {
worker_connections 4096; # 增加每个 worker 进程的最大连接数
multi_accept on; # 允许每个 worker 进程同时接受多个连接
}

http {
include /etc/nginx/mime.types;
default_type application/octet-stream;
sendfile on;
keepalive_timeout 65;
gzip on;
```
去掉就可以正常访问,加上就报错 没有证书
关于   ·   帮助文档   ·   博客   ·   API   ·   FAQ   ·   实用小工具   ·   1008 人在线   最高记录 6679   ·     Select Language
创意工作者们的社区
World is powered by solitude
VERSION: 3.9.8.5 · 12ms · UTC 20:52 · PVG 04:52 · LAX 12:52 · JFK 15:52
Developed with CodeLauncher
♥ Do have faith in what you're doing.