Skip to content

Commit

Permalink
Merge pull request #28 from jonstout/release-v2.3.0
Browse files Browse the repository at this point in the history
set version number to 2.3.0
  • Loading branch information
jonstout authored Nov 2, 2021
2 parents b59108a + 22aa157 commit e49dd31
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 4 deletions.
28 changes: 26 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,22 @@ An example is provided in /etc/grnoc/routerproxy/. The absolute paths must be us
shouldn't be in a web accessible folder for all to see. This would easily allow someone to
discover all of the passwords to the devices you have configured for your Router Proxy installation.

If you wish to change the appearance of Router Proxy, feel free to edit the webroot/style.css
cascading style sheet to better suit your needs.
If you wish to change the appearance of Router Proxy, feel free to
edit the webroot/style.css cascading style sheet to better suit your
needs. If you're only interested in modification of the primary color
you can set this in `routerproxy.yaml` under `frontend.primary_color`.

Example:
```yaml
frontend:
dropdown: 0
help: Additional help text
network_name: Example Network
noc_mail: [email protected]
noc_name: Example Network
noc_site: https://example.net
primary_color: '#990000'
```
## Dependencies
Router Proxy needs an Apache installation with CGI/Perl support. Additionally the following
Expand All @@ -52,6 +66,16 @@ don't have it installed, RouterProxy will still work).
These modules have several dependencies of their own, so make sure they are installed as well.
## Docker
RouterProxy may be run via Docker, but you'll need to build the container yourself.
```bash
perl Makefile.PL
make container
docker run --detach --publish 8080:8080 --name routerproxy \
--volume $PWD/conf/routerproxy.yaml:/etc/grnoc/routerproxy/routerproxy.yaml \
routerproxy:2.3.0
```

## TODO
* IOS Menu Commands?
* Force10 Menu Commands?
Expand Down
2 changes: 1 addition & 1 deletion grnoc-routerproxy.spec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Summary: GRNOC Router Proxy
Name: grnoc-routerproxy
Version: 2.2.0
Version: 2.3.0
Release: %{_buildno}%{?dist}
License: GRNOC
Group: Auth
Expand Down
2 changes: 1 addition & 1 deletion lib/GRNOC/RouterProxy.pm
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ use GRNOC::RouterProxy::Config;

my $timeout = 0;

our $VERSION = '2.2.0';
our $VERSION = '2.3.0';
sub new {

my $caller = shift;
Expand Down

0 comments on commit e49dd31

Please sign in to comment.