openvpn-status-web/README.md

93 lines
2.9 KiB
Markdown
Raw Permalink Normal View History

2013-02-25 22:40:18 +01:00
# openvpn-status-web
2020-12-10 10:26:15 +01:00
![ci](https://github.com/cmur2/openvpn-status-web/workflows/ci/badge.svg) [![Depfu](https://badges.depfu.com/badges/c264e2f70f2a19c43f880ddcb4a12ba8/overview.svg)](https://depfu.com/github/cmur2/openvpn-status-web?project_id=6194)
2013-05-03 21:27:13 +02:00
## Description
2013-07-19 09:32:37 +02:00
Small (another word for naive in this case, it's simple and serves my needs) [Rack](http://rack.github.com/) application providing the information an [OpenVPN](http://openvpn.net/index.php/open-source.html) server collects in it's status file especially including a list of currently connected clients (common name, remote address, traffic, ...).
2013-02-25 22:40:18 +01:00
It lacks:
2013-05-03 16:12:11 +02:00
* caching (parses file on each request, page does auto-refresh every minute as OpenVPN updates the status file these often by default)
2013-02-25 22:40:18 +01:00
* management interface support
* *possibly more...*
2013-02-25 22:56:33 +01:00
2013-05-03 16:06:30 +02:00
## Usage
Install the gem:
gem install openvpn-status-web
Create a configuration file in YAML format somewhere:
```yaml
# listen address and port
host: "0.0.0.0"
port: "8080"
2013-05-03 22:26:07 +02:00
# optional: drop priviliges in case you want to but you should give this user at least read access on the log files
user: "nobody"
group: "nogroup"
2013-05-03 16:06:30 +02:00
# logfile is optional, logs to STDOUT else
logfile: "openvpn-status-web.log"
2013-07-19 09:32:37 +02:00
# hash with each VPNs display name for humans as key and further config as value
vpns:
My Small VPN:
# the status file path and status file format version are required
version: 1
status_file: "/var/log/openvpn-status.log"
My Other VPN:
version: 3
status_file: "/var/log/other-openvpn-status.log"
2013-05-03 16:06:30 +02:00
```
2013-05-03 16:12:11 +02:00
Your OpenVPN configuration should contain something like this:
```
# ...snip...
status /var/log/openvpn-status.log
status-version 1
# ...snip...
```
2013-07-19 09:32:37 +02:00
For more information about OpenVPN status file and version, see their [man page](https://community.openvpn.net/openvpn/wiki/Openvpn23ManPage). openvpn-status-web is able to parse all versions from 1 to 3.
2013-05-03 16:06:30 +02:00
## Advanced topics
2013-05-03 16:12:11 +02:00
### Authentication
If the information exposed is important to you serve it via the VPN or use a webserver as a proxy to handle SSL and/or HTTP authentication.
2013-05-03 16:06:30 +02:00
2020-07-13 10:37:08 +02:00
### Startup
2013-05-03 16:06:30 +02:00
2020-07-13 10:37:08 +02:00
There is a [Dockerfile](docs/Dockerfile) that can be used to build a Docker image for running openvpn-status-web.
2023-02-16 16:00:18 +01:00
This can for example be used with `docker-compose` via:
```yaml
version: "2.4"
services:
openvpn-status-web:
image: your-selfbuilt-docker-image
user: root # needed since the default status files are chmod 600
volumes:
- /path/to/host/config.yml:/etc/openvpn-status-web/config.yml:ro
- /run/openvpn-server:/run/openvpn-server
ports:
- "8080:8080"
```
The `/path/to/host/config.yml` could be:
```yaml
host: "0.0.0.0"
port: "8080"
vpns:
my-cool-vpn: # the following depends on your setup
version: 2
status_file: "/run/openvpn-server/status-my-cool-vpn.log"
```
2013-05-03 16:06:30 +02:00
2013-02-25 22:56:33 +01:00
## License
2020-07-13 10:33:54 +02:00
openvpn-status-web is licensed under the Apache License, Version 2.0. See LICENSE for more information.