web
-
Nginx提高安全与性能的最好配置
主要展示在Nginx中配置X-Frame-Options、X-XSS-Protection、 X-Content-Type-Options、Strict-Transport-Sec…
-
Nginx中的rewrite指令(break,last,redirect,permanent)
rewite 在server块下,会优先执行rewrite部分,然后才会去匹配location块server中的rewrite break和last没什么区别,都会去匹配locat…
-
自定义nginx日志格式
nginx日志格式通过log_format命令来定义的。自定义格式的模块:ngx_http_log_module示例:log_format log ‘$remote_a…
-
定时切割 Nginx 日志
1、 crontab -e 00 00 * * * /usr/local/nginx/backlog1.0.pl #添加定时任务 #!/usr/bin/perl use stri…
-
Squid常用命令
当你的 squid.conf 配置文档按照你的想法修改完以后,启动 squid 之旅就开始了。 1,初始化你在 squid.conf 里配置的 cache 目录 #squid/s…
-
Nginx配置文件
#运行用户 user safe; #启动进程,通常设置成和cpu的数量相等 worker_processes 16; #全局错误日志定义类型,(debug|info|notice|…