--prefix=/app/nginx --conf-path=/app/nginx/conf/nginx.conf --sbin-path=/app/nginx/sbin/nginx --http-log-path=/app/nginx/logs/access.log --error-log-pa ...
分类:
其他好文 时间:
2017-12-18 12:36:16
阅读次数:
213
#user nobody; user nginx nginx; worker_processes 1; #error_log logs/error.log; #error_log logs/error.log notice; #error_log logs/error.log info; #pid ...
分类:
其他好文 时间:
2017-12-04 18:58:05
阅读次数:
189
Nginx 的日志都是写在一个文件当中的,不会自动地进行切割,如果访问量很大的话,将导致日志文件容量非常大,不便于管理和造成Nginx 日志写入效率低下等问题。所以,往往需要要对access_log、error_log日志进行切割。 切割日志一般利用USR1信号让nginx产生新的日志。实例: 1、 ...
分类:
其他好文 时间:
2017-12-01 23:32:22
阅读次数:
184
http://blog.csdn.net/loongsking/article/details/53224473 function btn_submit() { var data = null; var trList = $("#forecastBillcode tbody").children(" ...
分类:
Web程序 时间:
2017-11-16 21:57:44
阅读次数:
292
多态 多态性(polymorphisn)是允许你将父对象设置成为和一个或更多的他的子对象相等的技术,赋值之后,父对象就可以根据当前赋值给它的子对象的特性以不同的方式运作。简单的说,就是一句话:允许将子类类型的指针赋值给父类类型的指针。 那么,多态的作用是什么呢?我们知道,封装可以隐藏实现细节,使得代 ...
分类:
编程语言 时间:
2017-11-11 17:38:34
阅读次数:
169
Given the scriptcreate script db_backup_datafile_script{backup datafile and 1, and2 plus archivelog delete input;}What is the result of running this c ...
分类:
其他好文 时间:
2017-11-10 15:09:07
阅读次数:
195
log.error(msg): log.error(msg,e) ...
分类:
其他好文 时间:
2017-10-18 11:49:55
阅读次数:
1189
#运行用户 user nobody; #启动进程,通常设置成和cpu的数量相等 worker_processes 1; #全局错误日志及PID文件 #error_log logs/error.log; #error_log logs/error.log notice; #error_log logs... ...
分类:
其他好文 时间:
2017-10-06 18:37:35
阅读次数:
102
#user nobody; worker_processes 1; #error_log logs/error.log; #error_log logs/error.log notice; #error_log logs/error.log info; #pid logs/nginx.pid; ev... ...
分类:
其他好文 时间:
2017-09-20 14:42:55
阅读次数:
169
做个记录,这个可用。每次新项目配置从网上找来的都要配半天 这里不说这是什么,从哪来,为什么这样配置 App.config或其他.config文件里加入如下配置 Properties下AssemblyInfo.cs里加入 再添加一个静态公共类 调用就很简单了 Log.Error() ...