Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/infrablocks/docker-openvpn-aws
OpenVPN image used by the end-to-end-openvpn example.
https://github.com/infrablocks/docker-openvpn-aws
aws aws-s3 docker docker-image image infrablocks openvpn openvpn-server
Last synced: about 2 months ago
JSON representation
OpenVPN image used by the end-to-end-openvpn example.
- Host: GitHub
- URL: https://github.com/infrablocks/docker-openvpn-aws
- Owner: infrablocks
- License: mit
- Created: 2020-04-14T13:27:12.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2024-10-28T11:34:07.000Z (3 months ago)
- Last Synced: 2024-10-28T14:57:49.696Z (3 months ago)
- Topics: aws, aws-s3, docker, docker-image, image, infrablocks, openvpn, openvpn-server
- Language: Ruby
- Size: 225 KB
- Stars: 2
- Watchers: 7
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
- Code of conduct: CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# Docker Image - OpenVPN AWS
## Development
### Managing CircleCI keys
To encrypt a GPG key for use by CircleCI:
```bash
openssl aes-256-cbc \
-e \
-md sha1 \
-in ./config/secrets/ci/gpg.private \
-out ./.circleci/gpg.private.enc \
-k ""
```To check decryption is working correctly:
```bash
openssl aes-256-cbc \
-d \
-md sha1 \
-in ./.circleci/gpg.private.enc \
-k ""
```