04 2017 档案

nginx fastcgi 优化
摘要:fastcgi_cache_path /usr/local/nginx/fastcgi_cache levels=1:2 keys_zone=TEST:10m inactive=5m; fastcgi_connect_timeout 300; fastcgi_send_timeout 300; fa 阅读全文

posted @ 2017-04-28 12:28 荣锋亮 阅读(443) 评论(0) 推荐(0) 编辑

mysql 用户管理
摘要:一, 创建用户: 命令:CREATE USER 'username'@'host' IDENTIFIED BY 'password'; 说明:username - 你将创建的用户名, host - 指定该用户在哪个主机上可以登陆,如果是本地用户可用localhost, 如果想让该用户可以从任意远程主 阅读全文

posted @ 2017-04-26 22:46 荣锋亮 阅读(253) 评论(0) 推荐(0) 编辑

js之iframe子页面与父页面通信
摘要:iframe子页面与父页面通信根据iframe中src属性是同域链接还是跨域链接,通信方式也不同。 一、同域下父子页面的通信 父页面parent.html <html> <head> <scripttype="text/javascript"> function say(){ alert("pare 阅读全文

posted @ 2017-04-26 22:27 荣锋亮 阅读(292) 评论(0) 推荐(0) 编辑

nginx FastCGI错误Primary script unknown解决办法
摘要:解决方法: 修改 fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name; 为: fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; fastcgi_para 阅读全文

posted @ 2017-04-26 22:24 荣锋亮 阅读(583) 评论(0) 推荐(0) 编辑

nginx php-fpm
摘要:1. nginx php-fpm yum install nginx yum install php-fpm yum install nginx yum install php-fpm 2. 配置 nginx.conf location ~ \.php$ { root /usr/share/ngin 阅读全文

posted @ 2017-04-26 22:24 荣锋亮 阅读(264) 评论(0) 推荐(0) 编辑

node 升级
摘要:npm install -g n npm update –g 阅读全文

posted @ 2017-04-25 20:00 荣锋亮 阅读(134) 评论(0) 推荐(0) 编辑

jenkins api 使用
摘要:1. java <dependency> <groupId>com.offbytwo.jenkins</groupId> <artifactId>jenkins-client</artifactId> <version>0.3.7</version> </dependency> <dependenc 阅读全文

posted @ 2017-04-11 09:15 荣锋亮 阅读(696) 评论(0) 推荐(0) 编辑

Thumbnailator 图像处理
摘要:Create a thumbnail from an image file Thumbnails.of(new File("original.jpg")) .size(160, 160) .toFile(new File("thumbnail.jpg")); In this example, the 阅读全文

posted @ 2017-04-11 08:53 荣锋亮 阅读(744) 评论(0) 推荐(0) 编辑

基于jquery 的ajax 文件下载
摘要:ajax 文件下载,实际上就是模拟表单提交,代码如下: function download(url, data, method){ //url and data options required if( url && data ){ //data can be string of parameters or array/object data =typeof data =='strin... 阅读全文

posted @ 2017-04-10 20:42 荣锋亮 阅读(10030) 评论(0) 推荐(0) 编辑

maven docker plugin 常见问题解决
摘要:1. maven 项目必须使用小写,不然会一直有500 的错误 500: HTTP 500InternalServerError 500: HTTP 500InternalServerError 2. docker server 连接数超了 Failed to execute goal com.sp 阅读全文

posted @ 2017-04-05 16:03 荣锋亮 阅读(10975) 评论(0) 推荐(0) 编辑

lua resty template && openresty 使用
摘要:1. 安装 luarocks install lua-resty-template 2. 使用 luarocks install lua-resty-template 2. 使用 配置模板页面位置 有多种方式: a. 直接使用root 目录 代码如下: location /{ root html; 阅读全文

posted @ 2017-04-04 21:41 荣锋亮 阅读(3508) 评论(0) 推荐(0) 编辑

jekyll 安装使用
摘要:1. 安装 条件: ruby gem 注意版本,同时建议使用国内的镜像 gem install jekyll bundler gem install jekyll bundler 2. 创建网站 jekyll new my-awesome-site jekyll new my-awesome-sit 阅读全文

posted @ 2017-04-04 16:55 荣锋亮 阅读(470) 评论(0) 推荐(0) 编辑

java 短链接生成
摘要:package shorurl; import org.apache.commons.codec.digest.DigestUtils; import org.apache.commons.lang.StringUtils; publicclassShortUrl{ privatestaticfinalint BINARY =0x2; privatestaticfinalint NUMBER... 阅读全文

posted @ 2017-04-03 14:03 荣锋亮 阅读(879) 评论(0) 推荐(0) 编辑

openresty websocket 使用
摘要:openresty websocket 使用 1. 代码如下: local server =require"resty.websocket.server" local wb, err = server:new{ timeout =5000, max_payload_len =65535 } ifno 阅读全文

posted @ 2017-04-03 12:24 荣锋亮 阅读(2362) 评论(0) 推荐(0) 编辑

web 优化原则
摘要:1. 减少http 请求 2. 使用CDN 3. 添加expires 头 4. gzip 压缩 5. 样式表放在头部 6. 脚本放底部 7. 避免css 表达式 8. 使用外部css js 9. 减少DNS 10.精简js 11. 避免重定向 12. 删除重复脚本 13. 配置etag 14. 使a 阅读全文

posted @ 2017-04-02 14:50 荣锋亮 阅读(246) 评论(0) 推荐(1) 编辑

linux 磁盘挂载操作
摘要:1. fdisk -l 查看磁盘 2. fisk /dev/vdb 进行分区 依次输入 n p 1 两次回车 wq 3. fdisk -l 查看分区 4. 分区格式化 mkfs.exts /dev/vdb1 5. 写入分区表信息,方便启动自动挂载 echo /dev/vdb /XXXX ext3 d 阅读全文

posted @ 2017-04-01 21:34 荣锋亮 阅读(943) 评论(0) 推荐(0) 编辑

nginx 缓存处理
摘要:核心指令 proxy_cache_path /data/nginx/cache/one levels=1:2 keys_zone=one:10m max_size=10g; proxy_cache_key "$host$request_uri"; proxy_cache_path /data/ngi 阅读全文

posted @ 2017-04-01 09:39 荣锋亮 阅读(757) 评论(0) 推荐(0) 编辑

导航