https://github.com/cesnet/mod_ssl_preauth
A preauthentication module for Apache that utilizes SSL identities
https://github.com/cesnet/mod_ssl_preauth
Last synced: 6 months ago
JSON representation
A preauthentication module for Apache that utilizes SSL identities
- Host: GitHub
- URL: https://github.com/cesnet/mod_ssl_preauth
- Owner: CESNET
- License: apache-2.0
- Created: 2018-01-09T08:21:27.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2021-12-02T16:29:11.000Z (over 4 years ago)
- Last Synced: 2023-03-22T13:27:27.049Z (about 3 years ago)
- Language: C
- Size: 19.5 KB
- Stars: 1
- Watchers: 8
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
Instructions for installation under Debian
```bash
apt install -y git
pushd /tmp
git clone https://github.com/CESNET/mod_ssl_preauth
cd mod_ssl_preauth
# Install depencencies for compitaion of Apache2 module.
apt install -y apache2-dev
make && make install || exit 1
popd
cat > /etc/apache2/mods-available/ssl_preauth.load << EOF
LoadModule ssl_preauth /usr/lib/apache2/modules/mod_ssl_preauth.so
EOF
# Enable the custom module.
a2enmod ssl_preauth
systemctl restart apache2
```