CatCoding

当前 25,共 50 页

Docker compose 初始化失败问题

问题今天在 Docker Postgresql 用户名和密码授权的问题上花了一些时间,问题是: psql: FATAL: password authentication failed for user "postgres" admin 的用户名和密码是可以在 docker-com ......

使用 overcommit 生成 git hooks

git hooks很方便地可以在 git 操作流程的各个阶段加入 hooks,比如执行一些脚本来检查代码风格、跑单元测试、做代码静态检查等。git hooks 的试用方法是在.git/hooks 目录下写各种脚本,但是.git 目录的这些脚本是不会 checkin 到 repo 里的 ......

Nginx https too many redirect

Http 请求在经过多层 Nginx 的时候,通常强制 http 跳转到 https 的时候会这样配置: return 302 https://$host$request_uri; ## 需要注意这里是 request_uri 而不是 uri,否则会引起安全问题 但是如果是多层 N ......

Linux 当前 shell 执行命令

Linux shell 执行脚本的时候一般是会 fork 出一个子 shell,这样在有的时候就不方便了,比如要 unset 当前 shell 的环境变量等, #!/usr/bin/env zsh if [ -z $http_proxy ]; then echo "not ......

Ruby 的 open 函数导致命令执行

说明首先看看 open 函数的文档说明:https://apidock.com/ruby/v1_9_3_392/Kernel/open/class: If path starts with a pipe character, a subprocess is created, co ......