Mercurial > prosody-wiki
annotate mod_proxy65.wiki @ 79:493650d0151b
added new TODOs
author | t.ephraim |
---|---|
date | Sat, 31 Oct 2009 19:07:17 +0000 |
parents | 06542881ba44 |
children | 44b6fcddb5c1 |
rev | line source |
---|---|
77
85a049a790ed
Expanded page to include intro, usage, configuration and compatibility sections. Added to Todo section.
MWild1
parents:
75
diff
changeset
|
1 #summary XEP-0065: SOCKS5 Bytestreams file transfer proxy |
75 | 2 #labels Stage-Beta |
50 | 3 |
4 = Introduction = | |
5 | |
77
85a049a790ed
Expanded page to include intro, usage, configuration and compatibility sections. Added to Todo section.
MWild1
parents:
75
diff
changeset
|
6 mod_proxy65 implements XEP-0065: SOCKS5 Bytestreams as a component. It allows the server to proxy file transfers between 2 clients that are behind NAT routers or firewalls, and otherwise wouldn't be able to transfer files. |
50 | 7 |
8 = Details = | |
77
85a049a790ed
Expanded page to include intro, usage, configuration and compatibility sections. Added to Todo section.
MWild1
parents:
75
diff
changeset
|
9 Once set up, depending on which client you are using the proxy may be automatically used, or the client may have to be configured. Consult your client's friendly documentation for more information :) |
85a049a790ed
Expanded page to include intro, usage, configuration and compatibility sections. Added to Todo section.
MWild1
parents:
75
diff
changeset
|
10 |
85a049a790ed
Expanded page to include intro, usage, configuration and compatibility sections. Added to Todo section.
MWild1
parents:
75
diff
changeset
|
11 = Usage = |
85a049a790ed
Expanded page to include intro, usage, configuration and compatibility sections. Added to Todo section.
MWild1
parents:
75
diff
changeset
|
12 {{{ |
85a049a790ed
Expanded page to include intro, usage, configuration and compatibility sections. Added to Todo section.
MWild1
parents:
75
diff
changeset
|
13 Component "proxy.example.com" "proxy65" |
85a049a790ed
Expanded page to include intro, usage, configuration and compatibility sections. Added to Todo section.
MWild1
parents:
75
diff
changeset
|
14 }}} |
85a049a790ed
Expanded page to include intro, usage, configuration and compatibility sections. Added to Todo section.
MWild1
parents:
75
diff
changeset
|
15 |
85a049a790ed
Expanded page to include intro, usage, configuration and compatibility sections. Added to Todo section.
MWild1
parents:
75
diff
changeset
|
16 = Configuration = |
85a049a790ed
Expanded page to include intro, usage, configuration and compatibility sections. Added to Todo section.
MWild1
parents:
75
diff
changeset
|
17 Although none are required, under the Component section mod_proxy65 understands several configuration options: |
50 | 18 |
78
06542881ba44
That asterisk was not meant to imply boldness :/
florob@babelmonkeys.de
parents:
77
diff
changeset
|
19 ||proxy65_interface||The server's interface (IP address) to bind (listen) on (default is "`*`", meaning all interfaces)|| |
77
85a049a790ed
Expanded page to include intro, usage, configuration and compatibility sections. Added to Todo section.
MWild1
parents:
75
diff
changeset
|
20 ||proxy65_address||The advertised address of the proxy, which clients use to connect to (default is the same as the hostname of the component)|| |
85a049a790ed
Expanded page to include intro, usage, configuration and compatibility sections. Added to Todo section.
MWild1
parents:
75
diff
changeset
|
21 ||proxy65_port||The port on the server to which clients should connect (default is port 5000)|| |
85a049a790ed
Expanded page to include intro, usage, configuration and compatibility sections. Added to Todo section.
MWild1
parents:
75
diff
changeset
|
22 |
85a049a790ed
Expanded page to include intro, usage, configuration and compatibility sections. Added to Todo section.
MWild1
parents:
75
diff
changeset
|
23 = Compatibility = |
85a049a790ed
Expanded page to include intro, usage, configuration and compatibility sections. Added to Todo section.
MWild1
parents:
75
diff
changeset
|
24 ||0.6||Works|| |
85a049a790ed
Expanded page to include intro, usage, configuration and compatibility sections. Added to Todo section.
MWild1
parents:
75
diff
changeset
|
25 ||0.5||Should work|| |
85a049a790ed
Expanded page to include intro, usage, configuration and compatibility sections. Added to Todo section.
MWild1
parents:
75
diff
changeset
|
26 |
85a049a790ed
Expanded page to include intro, usage, configuration and compatibility sections. Added to Todo section.
MWild1
parents:
75
diff
changeset
|
27 = Todo = |
85a049a790ed
Expanded page to include intro, usage, configuration and compatibility sections. Added to Todo section.
MWild1
parents:
75
diff
changeset
|
28 * Optional support for UDP connections |
85a049a790ed
Expanded page to include intro, usage, configuration and compatibility sections. Added to Todo section.
MWild1
parents:
75
diff
changeset
|
29 * Access control |
85a049a790ed
Expanded page to include intro, usage, configuration and compatibility sections. Added to Todo section.
MWild1
parents:
75
diff
changeset
|
30 * Statistics, bandwidth limits/monitoring |