127.0

  • 宝塔服务器连接redis

    原文链接:https://blog.csdn.net/A_Khaos/article/details/120690685 http://www.360doc.com/content…

    数据库 2022年7月9日
  • nginx proxy_pass 的路径问题

    If the proxy_pass directive is specified with a URI, then when a request is passed to the …

    智能运维 2022年7月2日
  • Linux(Deepin)配置Clash

    1.在deepin自带的应用商店搜索clash并下载(博主目前用的是v0.19.20)。 2.打开General选项,Port设置成7890,Allow LAN可以打开,Start…

    智能运维 2022年6月27日
  • Linux(Deepin)配置Clash

    1.在deepin自带的应用商店搜索clash并下载(博主目前用的是v0.19.20)。 2.打开General选项,Port设置成7890,Allow LAN可以打开,Start…

    智能运维 2022年6月27日
  • windows nexus-3.20安装

    1.Nexus官网:https://www.sonatype.com/download-oss-sonatype   2.环境变量NEXUS_HOME = D:/nexus-3.2…

    智能运维 2022年6月18日
  • 【Django】通过tornado运行Django项目及Nginx本地部署

    一,需要解决的问题? 1.1,核心需求是:近期我需要部署本地代码到服务器,想现在本地走一下整体流程及简单原理。   1.2,相关知识: Nginx相关概念   二,部署思路 整体思…

    智能运维 2022年4月18日
  • Nginx中proxy_pass末尾带斜杠/和不带的区别

    如果proxy_pass末尾不带/,proxy_pass会拼接location的路径 如果proxy_pass末尾带/,proxy_pass不拼接location的路径   一、p…

    智能运维 2022年4月18日
  • Redis 04 List

    在 Redis 里面,可以把 List 当成栈、队列、阻塞队列使用。 list 实际是一个链表,左右都可以插入值。 如果 key 不存在,创建新的链表。 如果移除了所有元素,空链表…

    数据库 2022年4月18日
  • redis中级

    redis命令 语法 $ redis-cli -h host -p port -a password 实例 以下实例演示了如何连接到主机为 127.0.0.1,端口为 6379 ,…

    数据库 2022年4月18日
  • Redis五大数据类型之set+hash+zset

    set 集合 set是无序不重复的集合 无序就无法通过下标或者序列号查询 不重复 天然有去重的效果 集合的命令都是以S开头的 添加元素 ,查询元素 127.0.0.1:6379&g…

    数据库 2022年4月18日