-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #28 from jonstout/release-v2.3.0
set version number to 2.3.0
- Loading branch information
Showing
3 changed files
with
28 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|
@@ -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? | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters