Skip to content

Instantly share code, notes, and snippets.

View Jack2code's full-sized avatar
💭
I may be slow to respond.

Jack Leung Jack2code

💭
I may be slow to respond.
  • hw
  • Shenzhen, Guangdong Province, China.
View GitHub Profile
Axure RP 7.0注册码
用户名:axureuser
序列号:8wFfIX7a8hHq6yAy6T8zCz5R0NBKeVxo9IKu+kgKh79FL6IyPD6lK7G6+tqEV4LG
@Jack2code
Jack2code / 0_reuse_code.js
Created October 26, 2015 03:37
Here are some things you can do with Gists in GistBox.
// Use Gists to store code you would like to remember later on
console.log(window); // log the "window" object to the console
@Jack2code
Jack2code / Nginx学习笔记(1).md
Last active August 29, 2015 14:08
Nginx学习笔记(持续更新)

1-8点Po主:choseOne

##1. post方法请求静态文件

默认情况下,web服务器都不允许post方法请求静态文件,会返回响应403 Not Allowed。 如果需要可以通过配置文件来改变这种设置:在需要处理静态文件的location里如下所示配置即可:

location /static/ {
    root /path/to/files/;
    error_pages 405 = 200 $uri;
}