redis 设置密码 https://blog.csdn.net/qq_43543789/article/details/104255950
linux清除文件内容 >,Linux清除文件内容的几种方法 # 清空或删除大文件内容的五种方法: # 法一:通过重定向到 Null 来清空文件内容 $ >test.sh # 法二:使用 ‘true' 命令重定向来清空文件 $ true > test.sh # 可通过下列命令来查看文件容量是否为0 $ du -h test.sh 0 test.sh…
nginx.conf worker_processes 1; events { worker_connections 1024; } http { server { server_name localhost; listen 8081; location ~ / { root /Users/lucaswang/Code/react-browser-…
nginx.conf 文件需要添加的配置 worker_processes 1; events { worker_connections 1024; } http { # 配置 mime types 路径 include /xxx/path/mime.types; server { server_name localhost; listen 808…