Jearton

Results 58 issues of Jearton

现在容器内的1号进程是 start.sh,有点不规范,在多进程情况下,1号进程最好具有进程管理能力,这样比较规范。 当容器内存在多个应用程序要运行时,需要有一个进程管理工具,目前比较主流的解决方案是使用 s6-overlay 或 Supervisor 来管理多进程。或者基于 Linuxserver 基础镜像来制作自己的镜像。 [https://github.com/just-containers/s6-overlay](https://github.com/just-containers/s6-overlay) s6-overlay 的最佳实践,可以参考 Linuxserver: [https://www.linuxserver.io/](https://www.linuxserver.io/)

enhancement

在一条站点记录上,点击访问操作,可以直接在浏览器上打开新的标签页,访问对应的网站。如果存在多个 server_name,就弹个气泡框让用户自己选。 好处:便捷 ![image](https://github.com/0xJacky/nginx-ui/assets/10370433/d615a66c-4cf5-4133-b676-0a5ca265c6a5)

enhancement

![image](https://github.com/0xJacky/nginx-ui/assets/10370433/117a8d60-9f1a-45fa-891f-36f620ff6d18) 建议将 include 指令对应的文件里的指令,填充进来后,再去生成提示词。或者针对每一个include文件里的指令,再单独生成问答也可以。

enhancement

我想要给一个站点加上 RSA + ECC 双证书,可以支持吗?

enhancement

```nginx # Includes files with directives to load dynamic modules. include /etc/nginx/modules/*.conf; ``` 实际上有这些动态模块,但没有在nginx配置里引用进来 ![image](https://github.com/0xJacky/nginx-ui/assets/10370433/67bfac10-ff75-4a03-ae1b-8e73cd4fc62e)

bug

详细配置请查看官方教程:https://www.nginx.com/resources/wiki/start/topics/examples/forwarded/

enhancement

**Is your feature request related to a problem? Please describe.** No **Describe the solution you'd like** ```nginx # run nginx in foreground in docker container daemon off; # Enables the...

enhancement

如图所示,将80和443端口,配置在一个server块里,并且启用http2和OCSP Stapling。这是我手动配置出来的,有点麻烦。 ![image](https://github.com/0xJacky/nginx-ui/assets/10370433/e4a3ae7d-cc6e-46f1-82d7-8156c467d75b)

enhancement

我的证书是通过 DNS 方式申请的,不需要站点在公网可访问,而且我也没有公网IP

bug

如果 Nginx 没有匹配到任何 server 的话,则会选择可用列表中的第一个 server,带来的问题就是未绑定的域名或 IP 直接访问 80 和 443 端口会给后端逻辑服务增加压力并产生不合理的错误日志。 推荐配置(在反向代理UI之后再进行设置): ```nginx server { listen 80 default; listen [::]:80 default; server_name _; access_log off; return 444; } server...

enhancement