axios拦截添加功能
import axios from 'axios'
import { Message, MessageBox } from 'element-ui'
import store from '../store'
import { getToken } from '@/utils/auth'
...
centos7设置时区
# timedatectl list-timezones # 列出所有时区
# timedatectl set-local-rtc 1 # 将硬件时钟调整为与本地时钟一致, 0 为设置为 UTC 时间
# timedatectl set-timezone Asia/Shanghai # 设置系统时区为上海
其实不考虑各个发行版的差异化,...
nodemailer node发送自定义邮箱邮件
const nodemailer = require("nodemailer"); //发送邮件的node插件
const smtpTransport = requi...
nginx知识 nginx 重写(伪静态)
https://juejin.im/post/5c85a64d6fb9a04a0e2e038c?utm_source=gold_browser_extension
proxy_pass 后跟的服务器URL值是否以 / 结尾的区别:
若 Nginx 收到请求为 https://ngxin_server_name/hello/world
...
shell脚本执行错误 $'\r':command not found
Linux下有命令dos2unix
你只要输入dos2unix *.sh就可以完成转换工作了
如果命令不存在的话就用如下命令安装
yum install dos2unix -y
centos7更换源
yum 的使用是很方便的,可能出现的问题就是源的下载速度不理想,所以需要更换。它的配置文件在 /etc/yum.conf,源列表在 /etc/yum.repos.d。
备份mv base.repo baserepo.repo.backup
wget -o base.repo http:...
babel 转es5
"@babel/core": "^7.0.0",
"@babel/plugin-transform-runtime": "^7.3.4",
"@babel/preset-env": "^7.3.4",
"@babel/runtime": "^7.3.4",
"babel-loader":...
css鼠标跟随
https://codepen.io/Chokcoco/pen/XgvjQM
https://codepen.io/Chokcoco/pen/OqXqVz
https://codepen.io/Chokcoco/pen/zyyYqN
Linux Supervisor 守护进程基本配置
方法一、使用yum命令安装(推荐)
$ sudo su - #切换为root用户
# yum install epel-release
# yum install -y supervisor
# systemctl enable supervisord # 开机自启动
# systemctl start supervisord # 启动super...
nginx支持http2
1.下载安装需要用到的软件包,需要用的软件包如下
nginx-1.11.5.tar.gz
openssl-1.0.2j.tar.gz
pcre-8.38.zip
zlib-1.2.8.tar.gz
nginx-1....