2018年5月

扩展Nginx的WebDav支持

作者: bmzz | 时间: | 浏览: 2186 | 留言: 0 | 分类: 学无止境

05 26

1、简介

  废话可不看~

  WebDAV (Web-based Distributed Authoring and Versioning) 一种基于 HTTP 1.1协议的通信协议。它扩展了HTTP 1.1,在GET、POST、HEAD等几个HTTP标准方法以外添加了一些新的方法,使应用程序可对Web Server直接读写,并支持写文件锁定(Locking)及解锁(Unlock),还可以支持文件的版本控制。

  Nginx的轻量高效十分合我的胃口,但Nginx默认只实现了WebDAV的PUT、DELETE、MKCOL、COPY、MOVE,这显然不能满足日常的使用。所以,这里使用Nginx加载动态模块 nginx-dav-ext-module 来支持WebDAV额外需要的PROPFIND和OPTIONS方法。

- 阅读剩余部分 -

Visual Studio Code 安装Go插件

作者: bmzz | 时间: | 浏览: 474 | 留言: 0 | 分类: 开发工具

05 06

\bin\go.exe get -u -v github.com/sqs/goreturns
github.com/sqs/goreturns (download)
Fetching https://golang.org/x/tools/imports?go-get=1
https fetch failed: Get https://golang.org/x/tools/imports?go-get=1: dial tcp 216.239.37.1:443: connectex: A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond.
package golang.org/x/tools/imports: unrecognized import path "golang.org/x/tools/imports" (https fetch: Get https://golang.org/x/tools/imports?go-get=1: dial tcp 216.239.37.1:443: connectex: A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond.)

- 阅读剩余部分 -

我好菜啊