`
carol_ji
  • 浏览: 7641 次
社区版块
存档分类
最新评论
文章列表
nginx使用proxy模块时,默认的读取超时时间是60s。 1. send_timeout syntax: send_timeout the time default: send_timeout 60 context: http, server, location Directive assigns response timeout to client. Timeout is established not on entire transfer of answer, but only between two operations of reading, if after this ...
AJAX从一个域请求另一个域会有跨域的问题。那么如何在nginx上实现ajax跨域请求呢?要在nginx上启用跨域请求,需要添加add_header Access-Control*指令。如下所示: location / { add_header 'Access-Control-Allow-Origin' '*'; add_header 'Access-Control-Allow-Methods' 'POST,GET,OPTIONS,DELETE,PUT';             proxy_pass http://fosCluster;             proxy_re ...
服务部署到nginx后,前端上传图片报出“413 Request Entity Too Large”。 一看就是图片太大,超过了nginx配置的限制, 看了一下nginx.conf发现没有设置client_max_body_size,这个参数默认只是1M,也就是说上传图片大小不能超过1M 解决办法: 增加如下两行到nginx.conf的http{}段, 增大nginx上传文件大小限制 #设置允许发布内容为8M client_max_body_size 8M; client_body_buffer_size 128k; 另外如果运行的是php,那么还要检查php.ini,这个大小cli ...

启动oracle in linux

root用户登录后,输入以下命令 [root@dg1 ~]# su - oracle [oracle@dg1 ~]$ sqlplus /nolog SQL*Plus: Release 10.2.0.1.0 - Production on Mon May 11 12:51:24 2009 Copyright (c) 1982, 2005, Oracle. All rights reserved. SQL> conn / as sysdba Connected to an idle instance. SQL> startup ORACLE instance star ...
从官网下载SVN插件:site-1.6.10.zip 解压后将其全部文件拷贝至:E:\tools\eclipse-jee-helios-SR1-win32\eclipse\dropins 重启Eclipse即可出现SVN!
Global site tag (gtag.js) - Google Analytics