rhaproxy 1.0.0 → 1.0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +12 -12
- data/lib/rhaproxy.rb +2 -2
- data/lib/rhaproxy/backend.rb +2 -2
- data/lib/rhaproxy/defaults.rb +2 -2
- data/lib/rhaproxy/frontend.rb +2 -2
- data/lib/rhaproxy/global.rb +2 -2
- data/lib/rhaproxy/keywords.rb +2 -2
- data/lib/rhaproxy/listen.rb +2 -2
- data/lib/rhaproxy/peers.rb +2 -2
- data/lib/rhaproxy/userlist.rb +2 -2
- data/lib/rhaproxy/version.rb +3 -3
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: bce93c01801a55d218eaece704c2749a0e771427
|
4
|
+
data.tar.gz: e3491b2e507366504278d396d46a19372dd96a59
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7d1127e6f3e009933fa5587269b5e645c3df939d776b5be7cc7b7ef020696a5a3332f863538e0dc60c865139cd5dc47f3114ba66f2226dddb8554e3b0aed2682
|
7
|
+
data.tar.gz: 53468db39c0e1bd7f064c9e640bafc8baa5063a06d1c9ec9d49ba9619c6ed244a8364d6446b9de4006ae3071a0ccdfdd06e6339c3d99754987d6696299a835e1
|
data/README.md
CHANGED
@@ -5,23 +5,23 @@ Rhaproxy is a gem providing a ruby interface to HAproxy TCP/HTTP Load Balancer.
|
|
5
5
|
|
6
6
|
To install, type 'gem install rhaproxy'
|
7
7
|
|
8
|
-
### Why
|
8
|
+
### Why RHAProxy?
|
9
9
|
|
10
|
-
|
10
|
+
RHAProxy creates simple and small development tools that help you design,
|
11
11
|
develop, deploy cloud infrastractures for your enterprise software systems.
|
12
12
|
|
13
|
-
####
|
14
|
-
|
13
|
+
#### RHAProxy Pro: A Commercial, Supported Version of RHAProxy
|
14
|
+
RHAProxy Pro is a collection of useful functionality for the open source RHAProxy library with priority support via Remote access or Skype from the author, new features in-demand, upgrades and lots more.
|
15
15
|
|
16
|
-
Sales of
|
16
|
+
Sales of RHAProxy Pro also benefit the community by ensuring that RHAProxy itself will remain well supported for the foreseeable future.
|
17
17
|
|
18
18
|
#### Licensing
|
19
|
-
|
19
|
+
RHAProxy is available under the terms of the GNU LGPLv3 license.
|
20
20
|
|
21
|
-
In addition to its useful functionality, buying
|
21
|
+
In addition to its useful functionality, buying RHAProxy Pro grants your organization a RHAProxy Commercial License instead of the GNU LGPL, avoiding any legal issues your lawyers might raise. Please contact joelbryan.juliano@gmail.com for further detail on licensing including options for embedding RHAProxy Pro in your own products.
|
22
22
|
|
23
|
-
#### Buy
|
24
|
-
Contact me via joelbryan.juliano@gmail.com, and Pay via Paypal: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=
|
23
|
+
#### Buy RHAProxy Pro
|
24
|
+
Contact me via joelbryan.juliano@gmail.com, and Pay via Paypal: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=GFG3UVMX2FDEY
|
25
25
|
|
26
26
|
### Usage:
|
27
27
|
|
@@ -60,7 +60,7 @@ Contact me via joelbryan.juliano@gmail.com, and Pay via Paypal: https://www.payp
|
|
60
60
|
|
61
61
|
haproxy.conf:
|
62
62
|
|
63
|
-
```
|
63
|
+
```ruby
|
64
64
|
global
|
65
65
|
daemon
|
66
66
|
maxconn 256
|
@@ -78,6 +78,6 @@ haproxy.conf:
|
|
78
78
|
server server1 127.0.0.1:8000 maxconn 32
|
79
79
|
```
|
80
80
|
|
81
|
-
Donations
|
81
|
+
### Donations
|
82
82
|
|
83
|
-
Please support independent cloud computing toolkits, also money donated to the project will benefit the community by ensuring that
|
83
|
+
Please support independent cloud computing toolkits, also money donated to the project will benefit the community by ensuring that RHAProxy itself will remain well supported for the foreseeable future. To Donate, please visit: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=KT9CY4T7BYDM4
|
data/lib/rhaproxy.rb
CHANGED
@@ -2,8 +2,8 @@
|
|
2
2
|
#
|
3
3
|
# Homepage:: http://github.com/jjuliano/rhaproxy
|
4
4
|
# Author:: Joel Bryan Juliano
|
5
|
-
# Copyright:: (cc) 2011 Joel Bryan Juliano
|
6
|
-
# License::
|
5
|
+
# Copyright:: (cc) 2011-2015 Joel Bryan Juliano
|
6
|
+
# License:: GNU LGPLv3
|
7
7
|
|
8
8
|
require File.expand_path(File.dirname(__FILE__) + '/rhaproxy/mixins.rb')
|
9
9
|
require File.expand_path(File.dirname(__FILE__) + '/rhaproxy/keywords.rb')
|
data/lib/rhaproxy/backend.rb
CHANGED
@@ -2,8 +2,8 @@
|
|
2
2
|
#
|
3
3
|
# Homepage:: http://github.com/jjuliano/rhaproxy
|
4
4
|
# Author:: Joel Bryan Juliano
|
5
|
-
# Copyright:: (cc) 2011 Joel Bryan Juliano
|
6
|
-
# License::
|
5
|
+
# Copyright:: (cc) 2011-2015 Joel Bryan Juliano
|
6
|
+
# License:: GNU LGPLv3
|
7
7
|
|
8
8
|
#
|
9
9
|
# class RhaproxyBackend.new( array, str, array)
|
data/lib/rhaproxy/defaults.rb
CHANGED
@@ -2,8 +2,8 @@
|
|
2
2
|
#
|
3
3
|
# Homepage:: http://github.com/jjuliano/rhaproxy
|
4
4
|
# Author:: Joel Bryan Juliano
|
5
|
-
# Copyright:: (cc) 2011 Joel Bryan Juliano
|
6
|
-
# License::
|
5
|
+
# Copyright:: (cc) 2011-2015 Joel Bryan Juliano
|
6
|
+
# License:: GNU LGPLv3
|
7
7
|
|
8
8
|
#
|
9
9
|
# class RhaproxyDefaults.new( array, str, array)
|
data/lib/rhaproxy/frontend.rb
CHANGED
@@ -2,8 +2,8 @@
|
|
2
2
|
#
|
3
3
|
# Homepage:: http://github.com/jjuliano/rhaproxy
|
4
4
|
# Author:: Joel Bryan Juliano
|
5
|
-
# Copyright:: (cc) 2011 Joel Bryan Juliano
|
6
|
-
# License::
|
5
|
+
# Copyright:: (cc) 2011-2015 Joel Bryan Juliano
|
6
|
+
# License:: GNU LGPLv3
|
7
7
|
|
8
8
|
#
|
9
9
|
# class RhaproxyFrontend.new( array, str, array)
|
data/lib/rhaproxy/global.rb
CHANGED
@@ -2,8 +2,8 @@
|
|
2
2
|
#
|
3
3
|
# Homepage:: http://github.com/jjuliano/rhaproxy
|
4
4
|
# Author:: Joel Bryan Juliano
|
5
|
-
# Copyright:: (cc) 2011 Joel Bryan Juliano
|
6
|
-
# License::
|
5
|
+
# Copyright:: (cc) 2011-2015 Joel Bryan Juliano
|
6
|
+
# License:: GNU LGPLv3
|
7
7
|
|
8
8
|
#
|
9
9
|
# class RhaproxyGlobal.new( array, str, array)
|
data/lib/rhaproxy/keywords.rb
CHANGED
data/lib/rhaproxy/listen.rb
CHANGED
@@ -2,8 +2,8 @@
|
|
2
2
|
#
|
3
3
|
# Homepage:: http://github.com/jjuliano/rhaproxy
|
4
4
|
# Author:: Joel Bryan Juliano
|
5
|
-
# Copyright:: (cc) 2011 Joel Bryan Juliano
|
6
|
-
# License::
|
5
|
+
# Copyright:: (cc) 2011-2015 Joel Bryan Juliano
|
6
|
+
# License:: GNU LGPLv3
|
7
7
|
|
8
8
|
#
|
9
9
|
# class RhaproxyListen.new( array, str, array)
|
data/lib/rhaproxy/peers.rb
CHANGED
@@ -2,8 +2,8 @@
|
|
2
2
|
#
|
3
3
|
# Homepage:: http://github.com/jjuliano/rhaproxy
|
4
4
|
# Author:: Joel Bryan Juliano
|
5
|
-
# Copyright:: (cc) 2011 Joel Bryan Juliano
|
6
|
-
# License::
|
5
|
+
# Copyright:: (cc) 2011-2015 Joel Bryan Juliano
|
6
|
+
# License:: GNU LGPLv3
|
7
7
|
|
8
8
|
#
|
9
9
|
# class RhaproxyPeers.new( array, str, array)
|
data/lib/rhaproxy/userlist.rb
CHANGED
@@ -2,8 +2,8 @@
|
|
2
2
|
#
|
3
3
|
# Homepage:: http://github.com/jjuliano/rhaproxy
|
4
4
|
# Author:: Joel Bryan Juliano
|
5
|
-
# Copyright:: (cc) 2011 Joel Bryan Juliano
|
6
|
-
# License::
|
5
|
+
# Copyright:: (cc) 2011-2015 Joel Bryan Juliano
|
6
|
+
# License:: GNU LGPLv3
|
7
7
|
|
8
8
|
#
|
9
9
|
# class RhaproxyUserlist.new( array, str, array)
|
data/lib/rhaproxy/version.rb
CHANGED
@@ -2,14 +2,14 @@
|
|
2
2
|
#
|
3
3
|
# Homepage:: http://github.com/jjuliano/rhaproxy
|
4
4
|
# Author:: Joel Bryan Juliano
|
5
|
-
# Copyright:: (cc) 2011 Joel Bryan Juliano
|
6
|
-
# License::
|
5
|
+
# Copyright:: (cc) 2011-2015 Joel Bryan Juliano
|
6
|
+
# License:: GNU LGPLv3
|
7
7
|
|
8
8
|
module RHAproxy #:nodoc:
|
9
9
|
module VERSION #:nodoc:
|
10
10
|
MAJOR = 1
|
11
11
|
MINOR = 0
|
12
|
-
TINY =
|
12
|
+
TINY = 1
|
13
13
|
|
14
14
|
STRING = [MAJOR, MINOR, TINY].join('.')
|
15
15
|
end
|