生活在宁静的角落 Linux
Nginx 出现413 Request Entity Too Large得解决方法
今天处理文件上传功能的时候,总是提示接口错误,很是郁闷。换小文件发现没有问题,所以问题肯定出现在文件大小上。切 …
nginx 出现an upstream response is buffered to a temporary file
今天检查机器运行情况的时候在日志里看到这么一条:
2017/02/14 11:25:05 [warn] 32254#32254: *34 an upstream response is buffered to a temporary file /var/cache/nginx/fastcgi_temp/3/00/0000000003 while …点击查看更多…
Nginx 配置虚拟主机
- 当前nginx的版本
[root@localhost ~]# nginx -v nginx version: nginx/1.10.3
2. 查看nginx 目录结构
[root@localhost ~]# cd /etc/nginx/ [root@localhost nginx]# tree ../nginx ../nginx ├── conf.d │ ├── default.conf │ └── default.conf.rpmsave ├── fastcgi_params ├── koi-utf ├── koi-win ├── mime.types ├── modules -> ../../usr/lib64/nginx/modules ├── nginx …点击查看更多…
阿里云 ECS 升级内核
在更新系统的软件包时,发现如下错误:
[root@www]# yum -y update Loaded plugins: fastestmirror Setting up Update Process Determining fastest mirrors . . . Error: Package: util-linux-ng-2.17.2-12.24.el6_8.1.x86_64 (updates) Requires: kernel >= 2.6.32-642 Installed: kernel-2.6.32-279 …点击查看更多…
ubuntu 命令行修改提示符
修改.bashrc
# vim /root/.bashrc
找到
PS1='${debian_chroot:+($debian_chroot)}\A\u@\h:\W\#\$ '
export PS1='\[\e[30;0m\]\u@\h \w \$: '
代码的格式可以自定义,下面是网上找的:
转移符的意思:
/d :代表日 …