Skip to content

Commit

Permalink
renamed to wg-access-server
Browse files Browse the repository at this point in the history
  • Loading branch information
Place1 committed Nov 2, 2019
1 parent e6ab13a commit 98d5ba2
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# WireGuard Access Server
# WG Access Server

_i'm still thinking of a name..._

Expand Down Expand Up @@ -36,9 +36,9 @@ Soon I hope to add the following features
- [x] singleuser mode
* this is how the project currently works but I'll expand it to support authentication
- [x] multiuser mode
* support pluggable authentication backends including OAuth, OpenID Connect, LDAP, etc.
* allow different users to manage thier own devices without seeing others
* allow network isolation to be turned on or off allowing users to communicate or be isolated
- [x] support pluggable authentication backends including OAuth, OpenID Connect, LDAP, etc.
- [x] allow different users to manage thier own devices without seeing others
- [ ] allow network isolation to be turned on or off allowing users to communicate or be isolated

## Running with Docker

Expand All @@ -51,7 +51,7 @@ docker run \
--device /dev/net/tun:/dev/net/tun \
-p 8000:8000/tcp \
-p 51820:51820/udp \
place1/wireguard-access-server
place1/wg-access-server
```

## Configuration
Expand Down
2 changes: 1 addition & 1 deletion build-and-push.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ docker login

read -p "Version: " version

IMAGE="place1/wireguard-access-server:$version"
IMAGE="place1/wg-access-server:$version"

docker build -t "$IMAGE" .
docker push "$IMAGE"
2 changes: 1 addition & 1 deletion internal/config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ type AppConfig struct {
}

var (
app = kingpin.New("was", "An all-in-one WireGuard Access Server & VPN solution")
app = kingpin.New("wg-access-server", "An all-in-one WireGuard Access Server & VPN solution")
configPath = app.Flag("config", "Path to a config file").OverrideDefaultFromEnvar("CONFIG").String()
)

Expand Down

0 comments on commit 98d5ba2

Please sign in to comment.