nginx 文件服务器美化

网络上很多使用 nginx 来作为文件服务器的,前段时间公司也有这个需求,就研究了一下使用 nginx 来做文件服务器,参见前面两 …

点击查看更多…

nginx开启Gzip压缩

[gallery ids="1256"]

为什么要开启Gzip压缩
启用Gzip压缩功能, 可以使网站的css、js 、xml、html 等静态资源在传输时进行压缩,经过Gzip压缩后资源可以变为原来的30%甚至更小,尽管这样会消耗 …
点击查看更多…

nginx http 80 端口重定向到 https 443 端口

image1

修改 nginx 配置文件

[root@hostname /]# vim /etc/nginx/conf.d/default.conf>

在新增一个server,用于跳转

server {
    listen       80 default;
    server_name  www.on0926.com on0926.com;
    rewrite ^(.*)$ https://${server_name}$1 permanent;
}

原有的server listen 端口修改 …

点击查看更多…

/etc/php-fpm.d/www.conf 配置参数详解

emergency_restart_threshold = 10
在指定的一段时间内,如果失效的php-fpm子进程数超过这个值,php-fpm主进程优雅重启
emergency_restart_interval = 1m
设定emergency_restart_threshold 设置采用的时间跨度,s(econds), m(inutes), h(ours), or d(ays)
user = www
拥有这个php-fpm进程池中子进程的系统用户。要把 …
点击查看更多…

ngxtop 报错

[root@**** ~]# ngxtop
Traceback (most recent call last):
  File "/usr/local/bin/ngxtop", line 7, in
    from ngxtop.ngxtop import main
  File "/usr/local/lib/python3.6/site-packages/ngxtop/ngxtop.py", line 77, in
    from config_parser import detect_log_config, detect_config_path, extract_variables, build_pattern
ModuleNotFoundError: No module named 'config_parser'
解决方法:
卸 …
点击查看更多…