Home

Linux Nginx

Linux Nginx 导入配置 在http段中加入 include vhost/*.conf; Proxy NGINX Reverse Proxy Proxy Header 默认情况下会把源请求头转发给目标地址(默认proxy_pass_request_headers on;). 如果请求头包含下划线, 那么会忽略这个请求头. 需要使用underscores_in_headers on; 来打开 (http | service标签下) 超时 // http service local keepalive_timeout 600s; client_body_timeout 600s; send_timeout 600s; proxy_connec...

Read more

Linux Awesome Tools

Linux Awesome Tools Reference Awesome Shell awesome-cli-apps awesome-mac open-source-mac-os-apps Awesome Mac Apps and Utilities - 2020 Edition

Read more

Linux curl

Linux curl curl -fsSL www.baidu.com curl -X POST https://updsstg.sp.com.sa/csapi/token -H 'Content-Type: application/x-www-form-urlencoded' -d 'UserName=SPAdmin&password=P@ssw0rdComplex#$@#$#@@$##@$$3##$%&grant_type=password' 查看curl 访问时间 curl -o /dev/null -s -w %{time_namelookup}::%{time_connect}::%{time_starttransfer}::%{time_total...

Read more

Linux Fish

Linux Fish 设置环境变量 set set -g 设置全局 set -e 删除 Reference awesome-fish-shell Fish Plugins I Like

Read more

Linux 监控哪个进程创建文件

Linux 监控哪个进程创建文件 Reference Is it possible to find out what program or script created a given file? How to check which process/utility/cron created/modified a file/folder in Linux how to find which process had created any file in Linux How to Find Out Who is Using a File in Linux On Linux,File created by which program? Systemtap

Read more

Javaweb WebService

Javaweb WebService Reference WebService source: _posts/web/2020-12-12-web-ser.md/#excerpt WSDL WSDL(Web Service Description Language) 使用XML描述Web Service API WSDL 文档结构 元素 定义 web service 执行的操作 web service 使用的消息 web service 使用的数据类型 ...

Read more

Linux Crontab

Linux Crontab Crontab 环境说明 服务地址: /usr/lib/systemd/system/crond.service 命令: /usr/bin/crontab 配置: /etc/crontab; /var/spool/(不能删除); cron.d/; cron.daily/; cron.hourly/; cron.monthly/; cron.weekly/ 日志: /var/log/cron Crontab -e 编辑 f1 f2 f3 f4 f5 program 其中 f1 是表示分钟,f2 表示小时,f3 表示一个月份中的第几日,f4 表示月份,f5 表示一个星期中的第几天。program 表示要执行的程序。 当 f...

Read more