You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
42 lines
688 B
42 lines
688 B
12 years ago
|
How to install
|
||
|
==============
|
||
|
|
||
|
FreeBSD
|
||
|
--------------
|
||
|
|
||
|
```bash
|
||
|
cd ~ && git clone https://code.google.com/p/nginx-auth-ldap/
|
||
|
cp -R /usr/ports/www/nginx ~/nginx-ldap
|
||
|
```
|
||
|
|
||
|
edit ~/nginx-ldap/Makefile add CONFIGURE_ARGS --add-module=path_to_http_auth_ldap_module
|
||
|
|
||
|
```bash
|
||
|
HAS_CONFIGURE= yes
|
||
|
CONFIGURE_ARGS+=--prefix=${ETCDIR} \
|
||
|
....
|
||
|
--user=${WWWOWN} --group=${WWWGRP} \
|
||
|
--add-module=path_to_http_auth_ldap_module
|
||
|
```
|
||
|
|
||
|
install modified port
|
||
|
|
||
|
```bash
|
||
|
cd ~/nginx-ldap
|
||
|
make install clean
|
||
|
```
|
||
|
|
||
|
Linux
|
||
|
--------------
|
||
|
|
||
|
```bash
|
||
|
cd ~ && git clone https://code.google.com/p/nginx-auth-ldap/
|
||
|
```
|
||
|
|
||
|
in nginx source folder
|
||
|
|
||
|
```bash
|
||
|
./configure --add-module=path_to_http_auth_ldap_module
|
||
|
make install
|
||
|
```
|