https://github.com/nordunet/ac-frontend-nginx
https://github.com/nordunet/ac-frontend-nginx
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/nordunet/ac-frontend-nginx
- Owner: NORDUnet
- Created: 2017-07-19T07:54:15.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2017-07-20T10:36:32.000Z (almost 8 years ago)
- Last Synced: 2024-12-30T22:42:18.068Z (5 months ago)
- Language: Shell
- Size: 3.91 KB
- Stars: 0
- Watchers: 7
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Adobe Connect ngxin frontend
Simple Adobe Connect frontend for ssl offloading and loadbalancing.
## Installation
1. Install docker
2. Pull nginx `docker pull nginx:latest`
3. Clone nginx frontend
4. Run with below command```
docker run --rm -ti -p 443:443 -p 80:80 -e SP_HOSTNAME=connect-test.nordu.net -e APPSERVERS="test1.nordu.net test2.nordu.net" -v $(pwd):/app nginx /app/entrypoint.sh
```## Generate selfsigned cert
```
openssl req -x509 -sha256 -nodes -days 365 -newkey rsa:2048 -keyout ssl/connect.test.dk.key -out ssl/connect.test.dk.crt -subj "/C=/ST=/L=/O=/CN=connect.test.dk"
```