An open API service indexing awesome lists of open source software.

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

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
```