编程语言Apache和Nginx关闭日志方法
Apache和Nginx使用一段时间后日志文件会变的非常大。关闭apache日志apahce的配置文件conf文件里面 打开后把出日志的那个前面添加个#就行了
错误日志:
ErrorLog "logs/www.scutephp.net.error.log"
网站日志的:
CustomLog "logs//www.scutephp.net.access.log" common
==============================================
关闭nginx日志
http { server { access_log nul; #关闭访问日志 一定加在server里面 } }
文章来源:https://www.php.cn/faq/233295.html
赞 (0)