windows平台配置mercurial和nginx用户名密码访问

合集下载
  1. 1、下载文档前请自行甄别文档内容的完整性,平台不提供额外的编辑、内容补充、找答案等附加服务。
  2. 2、"仅部分预览"的文档,不可在线预览部分如存在完整性等问题,可反馈申请退款(可完整预览的文档不适用该条件!)。
  3. 3、如文档侵犯您的权益,请联系客服反馈,我们会尽快为您处理(人工客服工作时间:9:00-18:30)。

1. 下载
/
/en/download.html

2. 安装
Mercurial需要安装,Nginx不需要,随便找个目录解压缩就好了。

3. 建立Mercurial的代码仓库
随便建个目录,比如 c:\mercurial\repos
hg init

4. 配置mercurial 并启动 mercurial 的http服务
hg serve -d -a localhost -p 8000 --webdir-conf hgweb.config
-d 是指后台运行
-a 指定 localhost是为了限制mercurial只能从本机访问
--webdir-conf 指定 mercurial的 web配置文件为 hgweb.config

hgweb.config的内容很简单
[web]
push_ssl = false
allow_push = *
[paths]
/myhg = c:\mercurial\repos\

允许push的时候不需要 https ,允许所有人push,把mercurial的代码库映射到web上的 /myhg 目录

5. 修改nginx的配置
到nginx/conf 目录下打开 nginx.conf,修改成如下的样子。
location / {
root html;
index index.html index.htm;
auth_basic "Restricted";
auth_basic_user_file htpasswd;
proxy_pass http://localhost:8000;
}
使用简单的密码校验,反向代理到 localhost:8000

6. 配置用户和密码
在 nginx的 conf下,建立一个叫 htpasswd 的文件,纯文本,每一行是一对 用户名密码,冒号分隔,比如:
tom:1234
mike:5678

7. 最后启动nginx
直接运行 nginx.exe就好了,用浏览器打开 你的主页看看吧

相关文档
最新文档