This page (revision-14) was last changed on 27-Feb-2018 08:49 by Dieter Käppel

This page was created on 20-Apr-2012 10:16 by Dieter Käppel

Only authorized users are allowed to rename pages.

Only authorized users are allowed to delete pages.

Page revision history

Version Date Modified Size Author Changes ... Change note
14 27-Feb-2018 08:49 3 KB Dieter Käppel to previous
13 27-Feb-2018 08:49 3 KB Dieter Käppel to previous | to last
12 19-Jun-2014 22:07 3 KB Dieter Käppel to previous | to last
11 19-Oct-2013 15:19 2 KB Dieter Käppel to previous | to last
10 16-Aug-2013 16:51 2 KB Dieter Käppel to previous | to last
9 22-Feb-2013 19:05 2 KB Dieter Käppel to previous | to last
8 02-Feb-2013 14:45 2 KB Dieter Käppel to previous | to last
7 20-May-2012 13:14 2 KB Dieter Käppel to previous | to last
6 10-May-2012 05:49 1 KB Dieter Käppel to previous | to last
5 08-May-2012 21:53 1 KB Dieter Käppel to previous | to last
4 20-Apr-2012 10:19 1 KB Dieter Käppel to previous | to last
3 20-Apr-2012 10:17 1 KB Dieter Käppel to previous | to last Apache ==> Apache HTTPD
2 20-Apr-2012 10:17 1 KB Dieter Käppel to previous | to last
1 20-Apr-2012 10:16 234 bytes Dieter Käppel to last

Page References

Incoming links Outgoing links

Version management

Difference between version and

At line 18 added one line
ProxyPass /path/ http://localhost:8080/path/
At line 21 changed one line
_Erklärung:__ In den Headern werden die Localhost-Adressen wieder durch die Adressen der original Anfragen zurück ersetzt, daher auch 'Reverse'.
__Erklärung:__ In den Headern werden die Localhost-Adressen wieder durch die Adressen der original Anfragen zurück ersetzt, daher auch 'Reverse'.
At line 24 added 6 lines
Zusätzlich können die original Domain-Angaben mit durchgereicht werden, sodass in der Software nicht speziell eine Domain konfiguriert werden braucht:
{{{
ProxyPreserveHost On
}}}
At line 77 added 36 lines
!!Server Status
Wenn das Modul mod_status.so eingefügt wird, kann ein Serverstatus abgerufen werden. Dazu wird innerhalb eines VirtualHost ein Location-Eintrag vorgenommen:
{{{
<Location /server-status>
SetHandler server-status
Order Deny,Allow
Deny from all
Allow from all
AuthType Basic
AuthName "Restricted Files"
AuthBasicProvider file
AuthUserFile "conf/user.passwd"
Require user admin
</Location>
}}}
__Hinweis:__ Im Beispiel ist ein Login mit Passwortschutz konfiguriert. Die Datei user.passwd kann mit dem mitgelieferten Befehl htpasswd erstellt und bearbeitet werden.
!!!PHP installieren
Ein aktuelles PHP-Zip kann heruntergeladen und innerhalb des apache/php entpackt werden. In der httpd.conf braucht man folgende Einträge:
{{{
LoadModule php7_module php/php7apache2_4.dll
PHPIniDir php
AddHandler application/x-httpd-php .php
AddType application/x-httpd-php .php .html
}}}
!!!Fragen und Antworten
!!MSVCR110.dll fehlt
Das [Visual C++ Redistributable for Visual Studio 2012|http://www.microsoft.com/en-us/download/details.aspx?id=30679] installieren.
Bei Windows 8 kann dies unter Umständen nicht klappen. Dort können vier Dateien msvc*110.dll manuell nach C:\Windows\system32 kopiert werden. Das geht allerdings nur, wenn die [Benutzerkontensteuerung|Windows] abgeschaltet wird.