码迷,mamicode.com
首页 >  
搜索关键字:nginx upstream check    ( 34475个结果
各种报错
1.return torch.embedding(weight, input, padding_idx, scale_grad_by_freq, sparse)RuntimeError: Expected tensor for argument #1 'indices' to have scalar ...
分类:其他好文   时间:2021-03-01 13:14:12    阅读次数:0
nginx location / 区别
nginx服务器地址及端口:127.0.0.1:80 后端服务地址及端口:127.0.0.1:8080 测试URL:http://127.0.0.1:80/api/upload 一 nginx配置: location /api/ { proxy_pass http://127.0.0.1:8080/ ...
分类:其他好文   时间:2021-03-01 13:05:41    阅读次数:0
Git 记录
git记录 初始化: git version //查看git版本 git init //初始化仓库 cd 路径 //改变路径,windows命令 touch 文件名 //创建文件,windows命令 配置用户: git config --global user.name '用户名' git conf ...
分类:其他好文   时间:2021-02-27 13:31:46    阅读次数:0
Network Emulator for Windows Toolkit(模拟弱网络环境的软件)(转)
作者: 赵青青 出处:https://www.cnblogs.com/zhaoqingqing/p/12291079.html Network Emulator for Windows Toolkit(模拟弱网络环境的软件) 前言和下载地址# 用户会在各种网络环境下使用我们的app,pc应用,我们决 ...
分类:Windows程序   时间:2021-02-27 13:31:31    阅读次数:0
nginx 请求多个域名指定对应的根目录
同一个nginx配置文件,请求不同的域名可以指定对应的目录 nginx配置 cat long.conf server { listen 80; server_name a.com b.com c.com; location / { root /home/long/$host/; index inde ...
分类:其他好文   时间:2021-02-27 13:10:39    阅读次数:0
CentOS下的日志管理
日志进程rsyslog httpd/nginx/mysql: 各类应用程序,可以以自己的方式记录日志 Rsyslog 是处理系统相关日志的进程 处理日志的进程 rsyslog rsyslog可以处理绝大部分日志记录,比如系统操作有关信息,如登录信息,程序的启动关闭信息 [root@CatdeXin- ...
分类:其他好文   时间:2021-02-27 13:03:19    阅读次数:0
gitlab
克隆: git clone 链接 下载: git pull 上传: git config --global user.email “” 首次设置 git config --global user.name “” 首次设置 git add 文件名/文件 git commit -m “” 设置备注 gi ...
分类:其他好文   时间:2021-02-26 13:33:06    阅读次数:0
为什么 Nginx 比 Apache 更牛叉?
Nginx才短短几年,就拿下了Web服务器大壁江山,众所周知,Nginx在处理大并发静态请求方面,效率明显高于Httpd,甚至能轻松解决C10K问题。 在高并发连接的情况下,Nginx是Apache服务器不错的替代品。Nginx同时也可以作为7层负载均衡服务器来使用。根据我的测试结果,Nginx + ...
分类:Web程序   时间:2021-02-26 13:29:28    阅读次数:0
test_login(ddt)
import pytest from login import login_check datas = [ {"user":'python37', "passwd": 'lemonban', "check": {"code": 0, "msg": "登录成功"} }, {"user":'python ...
分类:其他好文   时间:2021-02-26 13:10:21    阅读次数:0
Fastdfs安装nginx和fastdfs-nginx-module模块后启动nginx报错
[root@localhost logs]# tail -100f error.log ngx_http_fastdfs_process_init pid=11255 [2021-02-24 19:11:20] ERROR - file: ../common/fdfs_http_shared.c, ...
分类:其他好文   时间:2021-02-26 12:54:25    阅读次数:0
34475条   上一页 1 ... 30 31 32 33 34 ... 3448 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!