摘要: iptables 生产环境下基础设置 生成环境需求:防火墙需要让内网的Ip全部通过,外网IP添加到白名单,其他一切拒绝。安装在linux系统中安装yum install iptables-services [root@h201 ~]# cat /etc/sysconfig/iptables# sam 阅读全文
posted @ 2018-06-19 14:46 Mr.zou 阅读(184) 评论(0) 推荐(0) 编辑
摘要: 1.安装Nginx 使用Nginx官方提供的rpm包 [root@nginx ~]# cat /etc/yum.repos.d/nginx.repo [nginx] name=nginx repo baseurl=http://nginx.org/packages/centos/7/$basearc 阅读全文
posted @ 2018-06-19 14:45 Mr.zou 阅读(132) 评论(0) 推荐(0) 编辑
摘要: php-ini优化 vi /etc/php.ini 打开php的安全模式,控制php执行危险函数, 默认是Off,改为On sql.safe_mode = Off 关闭php头部信息, 隐藏版本号, 默认是On,该为Off expose_php = On 错误信息输出控制 display_error 阅读全文
posted @ 2018-06-19 14:43 Mr.zou 阅读(1001) 评论(0) 推荐(0) 编辑
摘要: nginx 统计语句1.根据访问IP统计UV awk '{print $1}' access.log|sort | uniq -c |wc -l2.统计访问URL统计PV awk '{print $7}' access.log|wc -l 3.查询访问最频繁的URL awk '{print $7}' 阅读全文
posted @ 2018-06-19 14:42 Mr.zou 阅读(979) 评论(0) 推荐(0) 编辑
摘要: 选项 [root@localhost code]# cat /etc/nginx/conf.d/jsp.conf server {server_name local;listen 80;location / {root /soft/code;try_files $uri @java_page;ind 阅读全文
posted @ 2018-06-19 14:41 Mr.zou 阅读(184) 评论(0) 推荐(0) 编辑