Thinker Thinker

美国地址生成器

美国地址生成器 https://www.meiguodizhi.com/

Aristotle Aristotle 发布于 2023-04-16

永久免费域名注册eu.org

永久免费域名注册eu.org 引用:https://www.ywsj.cf/archives/yong-jiu-mian-fei-yu-ming-zhu-ce-euorg

Aristotle Aristotle 发布于 2023-04-16

minio控制台nginx的配置注意事项

minio控制台nginx的配置注意事项 1.由于在查看对象列表的时候需要使用到ws协议,所以需要配置 location块支持ws协议 2.location块 proxy_set_header Host $http_host,而不是$host,前者带端口号,后者不带,会造成 ws协议请求出现403的

Aristotle Aristotle 发布于 2023-03-23

nginx的单页面server的配置和rewrite指令的使用

nginx的单页面server的配置和rewrite指令的使用 Nginx rewrite 总结:参考:https://www.jianshu.com/p/a1fce9358d44 server { listen 81; root /home/xxx/wwwdev/orgadmin/

Aristotle Aristotle 发布于 2023-03-23

linux命令查看块大小

linux命令查看块大小 $ getconf PAGESIZE

Aristotle Aristotle 发布于 2023-03-23

maven查看变量和有效的pom

maven查看变量和有效的pom maven 打印变量${project.build.finalName} mvn help:evaluate -Dexpression=project.build.finalName mvn help:effective-pom maven查看有效的pom <!-

Aristotle Aristotle 发布于 2023-03-18

使用maven dockerfile plugin 一次使用同一个jar构建两个不同tag的镜像

使用maven dockerfile plugin 使用同一个jar一次构建两个不同tag的镜像 <plugin> <groupId>com.spotify</groupId> <artifactId>dockerfile-maven-plugin</artifactId>

Aristotle Aristotle 发布于 2023-03-18

关于nginx反向代理后端服务有关重定向问题的几个澄清

关于nginx反向代理后端服务有关重定向问题的几个澄清 1.重顶向的url的生成是后端服务处理的。 拿java程序举例,servlet api的request的 scheme ,serverName,port contextPath是从url中获取的,这就导致丢失了源发起方的对应信息。于是nginx

Aristotle Aristotle 发布于 2023-03-15

openssl生成自签名证书

openssl生成自签名证书 参考:https://ningyu1.github.io/site/post/51-ssl-cert/ 参考:https://www.jianshu.com/p/1a0958202087 参考:https://blog.

Aristotle Aristotle 发布于 2023-03-13

如何使docker容器内不使用root权限运行程序

如何使docker容器内不使用root权限运行程序 在 Docker 容器中,如果我们使用 root 用户身份来运行应用程序,那么这可能会造成一些安全隐患。为了解决这个问题,我们可以使用非 root 用户身份来运行应用程序。下面是一些步骤: 在 Dockerfile 中创建一个新的用户和组,例如:

Aristotle Aristotle 发布于 2023-03-12