Kullanabileceğiniz bir 3. taraf modülü nginx-auth-ldap
var. Henüz denemedim, ancak cevabımı daha sonra güncelleyebilirim.
nginx X-accel kullanan
Belgeleri X-accel
sadece sayfa sunulacak dosyanın nginx için bir başlık kullanabileceğini açıklar (ziyade PHP
ya django
ya ruby
ya ad-senin-not-as-verimli-as-nginx-yığın-burada ).
örneğin iş akışı:
- kullanıcı ziyaretleri
/download.php?path=/data/file1.txt
,
download.php
WWW-Authenticate
+ döndürür 401 Unauthorized
,
- kullanıcının tarayıcısı kimlik doğrulama formunu gösterir ve yeniden dener ,
- kullanıcı ziyaretleri,
/download.php?path=/data/file1.txt
ancak şimdi nginx
kimlik bilgilerine sahip,
nginx
geçebilir $remote_user
ve $http_authorization
için fastcgi
komut,
download.php
kimlik doğrulamasını yapar ve 403 Forbidden
başlık X-Accel-Redirect
üstbilgisini döndürüp döndürmeyeceğine karar verir .
nginx internal
konumunu ayarlama
X-Accel
Statik varlıkları sunmak için kullanabilmenize rağmen , burada kullanım örneği, isteklerin doğrulanmasını istiyoruz, bu yüzden kullanıyoruz internal
.
location /protected/data/ {
internal;
alias /path/to/data/files/;
}
indirme komut dosyasını ayarlama
İşte başlıyoruz:
location /download.php$ {
fastcgi_pass unix:/var/run/php-fpm/php-fpm.sock;
fastcgi_param SCRIPT_FILENAME /scripts/download.php;
fastcgi_param PHP_AUTH_USER $remote_user;
fastcgi_param PHP_AUTH_PW $http_authorization;
include fastcgi_params;
}
not edin : PHP komut dosyası kullanır PHP_AUTH_USER
ve PHP_AUTH_PW
, tarafından yakalanırnginx
böylece PHP script bunları kullanmak için, biz bunları açıkça sağlamak vermek gerekir.
PHP ldap kimlik doğrulaması pişirme
Benim kullanım durumunda, ben yüklü php-fpm
ve php-ldap
sistemimde.
İşte iyi bir kimlik doğrulama işlevi:
function authenticate() {
// I'm watching you.
error_log("authreq: " . $_SERVER['REMOTE_ADDR']);
// mark that we're seeing the login box.
$_SESSION['AUTH'] = 1;
// browser shows login box
Header("WWW-Authenticate: Basic realm=LDAP credentials.");
Header("HTTP/1.0 401 Unauthorized");
die('Unauthorized.');
}
İşte yasak erişim için iyi bir kod yolu:
function forbidden() {
error_log("forbidden: " . $_SERVER['REMOTE_ADDR'] . ', user: ' . $_SERVER['PHP_AUTH_USER']);
// avoid brute force attacks
sleep(rand(0, 3));
// re-display login form
session_destroy();
// don't give too much info (e.g. user does not exist / password is wrong)
Header("HTTP/1.0 403 Forbidden");
// yes I did put the same message.
die('Unauthorized.');
}
Ve LDAP kimlik doğrulamasının etleri için:
function ldap_auth() {
$ldap_server = 'ldap://ldap.example.com/';
$ldap_domain = 'dc=example,dc=com';
$ldap_userbase = 'ou=Users,' . $ldap_domain;
$ldap_user = 'uid=' . $_SERVER['PHP_AUTH_USER'] . ',' . $ldap_userbase;
$ldap_pass = $_SERVER['PHP_AUTH_PW'];
// connect to ldap server
$ldapconn = ldap_connect($ldap_server)
or die("Could not connect to LDAP server.");
ldap_set_option($ldapconn, LDAP_OPT_PROTOCOL_VERSION, 3) ;
if ($ldapconn) {
// try to bind/authenticate against ldap
$ldapbind = @ldap_bind($ldapconn, $ldap_user, $ldap_pass) || forbidden();
// "LDAP bind successful...";
error_log("success: " . $_SERVER['REMOTE_ADDR'] . ', user: ' . $_SERVER['PHP_AUTH_USER']);
}
ldap_close($ldapconn);
}
Burada uri isteğini kullanan komut dosyasının ana gövdesine sahipsiniz.
if (@$_SESSION['AUTH'] != 1) {
authenticate();
}
if (empty($_SERVER['PHP_AUTH_USER'])) {
authenticate();
}
// check credentials on each access
ldap_auth();
// Get requested file name
// you can use the query string or a parameter
// or the full request uri if you like.
$path = $_GET["path"];
error_log("serving: " . $_SERVER['REMOTE_ADDR'] . ', user: ' . $_SERVER['PHP_AUTH_USER'] . ', path: ' . $path);
header("Content-Type: ", true);
header("X-Accel-Redirect: /protected" . $path);
yarı saydam dosya tarama
Bunu bir öz olarak da yayınladım :
location /protected/data/ {
internal;
autoindex on;
alias /path/to/data/files/;
}
location /data/ {
fastcgi_pass unix:/var/run/php-fpm/php-fpm.sock;
fastcgi_param SCRIPT_FILENAME /scripts/auth.php;
fastcgi_param PHP_AUTH_USER $remote_user;
fastcgi_param PHP_AUTH_PW $http_authorization;
include fastcgi_params;
}
ve gövde dışında hemen hemen aynı PHP betiği:
// Get requested file name
$path = $_SERVER["REQUEST_URI"];
error_log("serving: " . $_SERVER['REMOTE_ADDR'] . ', user: ' . $_SERVER['PHP_AUTH_USER'] . ', path: ' . $path);
header("Content-Type: ", true);
header("X-Accel-Redirect: /protected" . $path);