统计
发布:378篇
浏览:911319次
-
vue router配置 const router = new VueRouter({ mode: 'history', + base: '/static/', routes }) 页面刷新404 webapps\ROOT\WEB-INF\web.xml <?xml version="1.0" encoding="ISO-8859-1"?> <web-app xmlns="http://java.sun.com/xml/ns/javaee" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/javaee ... 展开全文
-
nginx.conf路径 ps -ef | grep nginx 重载nginx.conf配置 nginx -s reload 反向代理配置 server { listen 80 default; server_name api.example.com; location / { proxy_pass http://localhost:3000; } } 下载文件到本地 //下载根目录下qiniu文件夹到本地temp文件夹中 scp -r root@IP地址:/qiniu/ D:\temp 端口启停 //编辑 vi /etc/sysconfig/iptables //重启服务 /etc/init.d/iptables resta... 展开全文
-
qshell是利用七牛文档上公开的API实现的一个方便开发者测试和使用七牛API服务的命令行工具。该工具设计和开发的主要目的就是帮助开发者快速解决问题 文档地址:https://developer.qiniu.com/kodo/tools/1302/qshell 下载qshell 新建qshell文件夹,下载qshell并解压 mkdir qshell cd qshell wget http://devtools.qiniu.com/qshell-v2.1.8.zip unzip qshell-v2.1.8.zip 输入 ls 查看解压后文件 qshell-darwin-x64 Mac 64位系... 展开全文