axios拦截添加功能

import axios from 'axios' import { Message, MessageBox } from 'element-ui' import store from '../store' import { getToken } from '@/utils/auth' ...
emer 发布于  2019-3-14 10:24 

centos7设置时区

# timedatectl list-timezones # 列出所有时区 # timedatectl set-local-rtc 1 # 将硬件时钟调整为与本地时钟一致, 0 为设置为 UTC 时间 # timedatectl set-timezone Asia/Shanghai # 设置系统时区为上海 其实不考虑各个发行版的差异化,...
emer 发布于  2019-3-14 10:15 

nodemailer node发送自定义邮箱邮件

const nodemailer = require("nodemailer"); //发送邮件的node插件 const smtpTransport = requi...
emer 发布于  2019-3-12 17:05 

nginx知识 nginx 重写(伪静态)

https://juejin.im/post/5c85a64d6fb9a04a0e2e038c?utm_source=gold_browser_extension proxy_pass 后跟的服务器URL值是否以 / 结尾的区别: 若 Nginx 收到请求为 https://ngxin_server_name/hello/world ...
emer 发布于  2019-3-12 09:32 

shell脚本执行错误 $'\r':command not found

Linux下有命令dos2unix 你只要输入dos2unix *.sh就可以完成转换工作了 如果命令不存在的话就用如下命令安装 yum install dos2unix -y
emer 发布于  2019-3-8 09:31 

centos7更换源

yum 的使用是很方便的,可能出现的问题就是源的下载速度不理想,所以需要更换。它的配置文件在 /etc/yum.conf,源列表在 /etc/yum.repos.d。 备份mv base.repo baserepo.repo.backup wget -o base.repo http:...
emer 发布于  2019-3-8 09:22 

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":...
emer 发布于  2019-3-7 10:58 

css鼠标跟随

https://codepen.io/Chokcoco/pen/XgvjQM https://codepen.io/Chokcoco/pen/OqXqVz https://codepen.io/Chokcoco/pen/zyyYqN
emer 发布于  2019-3-6 14:57 

Linux Supervisor 守护进程基本配置

方法一、使用yum命令安装(推荐) $ sudo su - #切换为root用户 # yum install epel-release # yum install -y supervisor # systemctl enable supervisord # 开机自启动 # systemctl start supervisord # 启动super...
emer 发布于  2019-3-5 17:45 

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....
emer 发布于  2019-3-4 16:15