码迷,mamicode.com
首页 >  
搜索关键字:nginx http_proxy upstream stream    ( 36151个结果
Nginx conf 设置语法高亮
原文:https://www.jianshu.com/p/534741a16c56 配置 mkdir -p ~/.vim/syntax cd ~/.vim/syntax wget http://www.vim.org/scripts/download_script.php?src_id=14376 ...
分类:其他好文   时间:2021-06-28 21:05:53    阅读次数:0
Mac下配置alias,zsh终端命令别名
经常使用命令行进行一些操作,一些常用的命令一遍遍的敲比较浪费时间,想通过别名的方式简化操作。 1、就是编辑~/.bash_profile,比如添加PS:=两边没有空格: alias st="git status" alias pull='git pull' alias push='git push' ...
分类:系统相关   时间:2021-06-28 20:41:29    阅读次数:0
C++ com 组件的使用
// CommonTest.cpp : This file contains the 'main' function. Program execution begins and ends there. // #include <iostream> #include <atlbase.h> #incl ...
分类:编程语言   时间:2021-06-28 20:36:02    阅读次数:0
记录在阿里云服务器配置网页的一些问题
1, 购买阿里云服务器, 2, 安装nginx, 后,http://47.99.189.10:8080/,看nginx是否成功,需要公网ip+端口号,端口号要去配置的, 3,使用 rsync -av koa2-tutorial-account-book root@47.99.189.10:/home ...
分类:Web程序   时间:2021-06-28 20:24:29    阅读次数:0
electron 截图,两种方式:desktopCapturer.getSources 与 navigator.mediaDevices.getUserMedia
1 // In the renderer process. 2 3 import { desktopCapturer } from 'electron'; 4 import { screen } from '@electron/remote'; 5 6 export async function c ...
分类:其他好文   时间:2021-06-28 18:51:50    阅读次数:0
JavaScript 装饰器Decorator
环境搭建 因为装饰器属于一个在提案中的语法,所以不管是node还是浏览器,现在都没有直接支持这个语法,我们要想使用该语法,就必须要通过babel将它进行一个编译转换,所以我们需要搭建一个babel编译环境。 1、安装babel相关包 npm i @babel/cli @babel/core @bab ...
分类:编程语言   时间:2021-06-28 18:33:09    阅读次数:0
基本数据结构实现--顺序表
顺序表是线性表的实现方式之一,其特点是逻辑上相邻的元素在物理上也相邻。顺序表一般使用数组实现。因此顺序表可以随机访问,时 间复杂度为O(1)。但插入和删除元素时,由于线性表的有序性,要移动大量元素,时间复杂度为O(n). 本代码拟使用动态分配空间的方式存储顺序表元素。 一个顺序表结构类型如下: 1 ...
分类:其他好文   时间:2021-06-28 17:56:32    阅读次数:0
centos6无法安装nginx
sed -i "s|enabled=1|enabled=0|g" /etc/yum/pluginconf.d/fastestmirror.conf mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backu ...
分类:其他好文   时间:2021-06-28 17:56:12    阅读次数:0
nginx重启报错
[nginx@p0-hfssp-healthos-web02 sbin]$ sudo ./nginx -s reloadnginx: [error] invalid PID number "" in "/home/nginx/openresty/nginx/logs/nginx.pid" 发生这个错 ...
分类:其他好文   时间:2021-06-24 18:14:17    阅读次数:0
[转] nginx关于root与alias的区别
结论 配置demo: location xxx { root yyy } 浏览器访问 xxx,实际访问的是 yyy/xxx浏览器访问 xxx/abc.html,实际访问的是 yyy/xxx/abc.html浏览器访问 xxx/ccc/abc.html,实际访问的是 yyy/xxx/ccc/abc.h ...
分类:其他好文   时间:2021-06-24 17:47:20    阅读次数:0
36151条   上一页 1 2 3 4 5 6 ... 3616 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!