05.10.2022

Wichtige Befehle für die .htaccess Datei eines Apache Web Servers.

Lokale Sperre für Webverzeichnisse

Inhalt von .htaccess

order deny,allow
deny from all
allow from 172.16.1

erlaubt den Zugriff nur aus dem lokalen Netzwerk.

Password-Schutz

# .htaccess-Datei für Passwortschutz
AuthType Basic
AuthName "Geschützter Bereich - Bitte geben Sie ein Passwort ein!"
AuthUserFile /Individueller/Pfad/.htpasswd
Require valid-user

htpasswd -c -B .htusers username für ersten Benutzer.
htpasswd -B .htusers usernamefür weitere Benutzer.

Quellen

Über … ×

doc.stumpp.name
Version 0.2.14

Michael Stumpp
michael@stumpp.name

Diese Webseite ist ein rein privates Angebot. Von dieser Seite werden keine Cookies oder andere Tracking-Methoden eingesetzt. Die Seite nutzt, soweit möglich, lokale Kopien der eingesetzen Bibliotheken und Ressourcen.

Lizenz: ISC ×
/*
 * Permission to use, copy, modify, and distribute this software for any
 * purpose with or without fee is hereby granted, provided that the above
 * copyright notice and this permission notice appear in all copies.
 *
 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
 */
Release Notes ×
  doc.stumpp.name
  Version 0.2.14
  Release Notes


  v0.1
    + Erstausgabe