Text only
22 Jan 2009 HTML Text
 
 
 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
HG PUSH OUTPUT:
==============

lorien@lorien:/web/foo$ hg push --debug
using http://hg.pydev.ru/foo
pushing to http://hg.pydev.ru/foo
sending capabilities command
capabilities: unbundle=HG10GZ,HG10BZ,HG10UN lookup changegroupsubset
sending heads command
searching for changes
common changesets up to 96f5fd1ed34b
1 changesets found
List of changesets:
e123e2e424a19347de99358a5c16d5891eb74014
sending unbundle command
sending 283 bytes
abort: authorization failed



NGINX CONFIG:
============

server {
    server_name .hg.pydev.ru;

    include fastcgi.conf;
    fastcgi_param   SCRIPT_NAME     ""; 


    location / { 
        limit_except GET {
            satisfy_any on; 
            deny all;
            auth_basic            "closed site";
            auth_basic_user_file  /web/hg.passwd;
        }   
        fastcgi_pass unix:/var/run/www/hg.pydev.ru.sock;
    }   
}