Es gibt ein Modul eines Drittanbieters nginx-auth-ldap
, das Sie verwenden können. Ich habe es noch nicht ausprobiert, aber ich kann meine Antwort später aktualisieren.
mit nginx X-accel
In der Dokumentation für wird X-accel
nur erläutert, dass eine Seite möglicherweise einen Header verwendet, damit Nginx eine Datei bereitstellt (anstelle von PHP
oder django
oder ruby
oder benennen Sie Ihren nicht so effizienten Nginx-Stapel hier ).
zB Workflow:
- Benutzerbesuche
/download.php?path=/data/file1.txt
,
download.php
gibt WWW-Authenticate
+ zurück 401 Unauthorized
,
- Benutzer-Browser zeigt die Authentifizierungs - Form und Wiederholungen ,
- Benutzer besucht
/download.php?path=/data/file1.txt
, nginx
hat aber jetzt die Anmeldeinformationen,
nginx
kann passieren $remote_user
und $http_authorization
zu fastcgi
Skript,
download.php
führt die Authentifizierung durch und entscheidet, ob 403 Forbidden
der Header- X-Accel-Redirect
Header zurückgegeben oder festgelegt wird .
Einstellen des Nginx- internal
Speicherorts
Während Sie X-Accel
statische Assets bereitstellen können, möchten wir, dass die Anforderungen authentifiziert werden. Aus diesem Grund verwenden wir sie internal
.
location /protected/data/ {
internal;
alias /path/to/data/files/;
}
Einrichten des Download-Skripts
Auf geht's:
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;
}
Bitte beachten Sie : Das PHP-Skript verwendet PHP_AUTH_USER
und PHP_AUTH_PW
, das von erfasst wirdnginx
. Um sie im PHP-Skript zu verwenden, müssen wir angeben, um sie explizit bereitzustellen.
Kochen einer LDAP-Authentifizierung in PHP
Für meinen Anwendungsfall habe ich php-fpm
und php-ldap
auf meinem System installiert .
Hier ist eine anständige Authentifizierungsfunktion:
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.');
}
Hier ist ein anständiger Codepfad für den verbotenen Zugriff:
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.');
}
Und für das Fleisch der LDAP-Authentifizierung:
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);
}
Hier haben Sie den Hauptteil des Skripts, das die Anfrage uri verwendet.
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);
halbtransparentes Durchsuchen von Dateien
Ich habe dies auch als Kern veröffentlicht :
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;
}
und so ziemlich das gleiche PHP-Skript mit Ausnahme des Körpers:
// 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);