add missing dependency, optimize for copy & paste
This commit is contained in:
parent
7d5810a29e
commit
745a6bfbd7
12
README.md
12
README.md
|
@ -3,13 +3,19 @@
|
|||
Build Instructions
|
||||
------------------
|
||||
Create self-signed certificates:
|
||||
```bash
|
||||
openssl req -x509 -nodes -newkey rsa:4096 -keyout server.key -out server.crt -days 365
|
||||
```
|
||||
$ openssl req -x509 -nodes -newkey rsa:4096 -keyout server.key -out server.crt -days 365
|
||||
|
||||
Get the dependencies
|
||||
|
||||
```bash
|
||||
go get github.com/gorilla/websocket
|
||||
```
|
||||
|
||||
Run the VPN
|
||||
```
|
||||
$ go build && ./go-rvpn-server
|
||||
```bash
|
||||
go build && ./go-rvpn-server
|
||||
```
|
||||
|
||||
Activate a webbrowser: https://127.0.0.1:8000/
|
||||
|
|
Loading…
Reference in New Issue