https://github.com/hhftechnology/hhf-vpn-deployment
Installation and configuration of the OpenConnect VPN server
https://github.com/hhftechnology/hhf-vpn-deployment
openconnect openconnect-vpn-server
Last synced: 18 days ago
JSON representation
Installation and configuration of the OpenConnect VPN server
- Host: GitHub
- URL: https://github.com/hhftechnology/hhf-vpn-deployment
- Owner: hhftechnology
- License: gpl-3.0
- Created: 2025-08-15T06:02:49.000Z (about 2 months ago)
- Default Branch: main
- Last Pushed: 2025-08-15T18:03:06.000Z (about 2 months ago)
- Last Synced: 2025-08-15T20:32:30.406Z (about 2 months ago)
- Topics: openconnect, openconnect-vpn-server
- Language: Shell
- Homepage:
- Size: 85.9 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## Installation and configuration of the OpenConnect VPN server
1. Begin by creating a project directory
```bash
mkdir /opt/openconnect && cd /opt/openconnect
```2. Copying the docker-compose.yml file
```bash
curl -O https://raw.githubusercontent.com/r4ven-me/openconnect/main/openconnect/docker-compose.yml
```3. Launching the OpenConnect server
```bash
docker compose up -d && docker compose logs -f
```4. Creating a user with the ID "exampleuser" and the name "Example User"
The .p12 certificate file will be created in ./data/secrets
```bash
docker exec -it openconnect ocuser exampleuser 'Example User'
```