From a93efb04e04f4ef1063ef90628cde0f1d5dab786 Mon Sep 17 00:00:00 2001 From: Sven Donath Date: Sat, 14 Jan 2012 01:42:25 +0100 Subject: [PATCH] .htaccess im lx-office-erp Wurzelverzeichnis, by default inaktiv MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit * Wahlweises Ändern des default character set des Webservers ohne die Server-Konfiguration anfassen zu müssen * Zugriffskontrolle mittels IPs und IP-Bereiche --- .htaccess | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .htaccess diff --git a/.htaccess b/.htaccess new file mode 100644 index 000000000..66862278a --- /dev/null +++ b/.htaccess @@ -0,0 +1,11 @@ +### Choose a character set (just in case you like to change it here) +### uncommit the line you wish to activate +#AddDefaultCharset ISO-8859-15 +#AddDefaultCharset UTF-8 + +### simple access control by client ip +### uncomment the lines starting with Order ..., Deny ... and Allow ... +### examples: "Allow from 192.168" or "Allow from 192.168.1" or "Allow from 192.168.178" or "Allow from 217.84.201.2" +#Order deny,allow +#Deny from all +#Allow from 192.168 -- 2.20.1