-
-
Notifications
You must be signed in to change notification settings - Fork 33
Webhosting Franken
Andreas Kroll edited this page Aug 11, 2020
·
3 revisions
- Webseite: https://www.webhosting-franken.de/
- PHP-Pfad:
/opt/php{major}.{minor}/bin/php
- NGINX Startup S Vermutlich werden auch alle größeren Pakete unterstützt (ungetestet).
Ich konnte bisher im kleinsten Paket Contao 4.4., 4.7 und 4.8 erfolgreich einsetzen. Es läuft alles ohne Fehler. Ich konnte problemlos Pakete installieren. Die Konfiguration des Host ist jedoch etwas anspruchsvoll und nichts für Laien. Man sollte daher etwas Zeit mitbringen, um alle Einstellmöglichkeiten von nginx/Apache richtig zu konfigurieren.
#Cache für alles aktivieren
set $no_cache 0;
#Keine Cache bei POST Requests
if ($request_method = POST) { set $no_cache 1; }
#Kein Cache wenn in URLs ein Query String enthalten ist
#if ($query_string != "") { set $no_cache 1; }
#Folgede URLs nicht cachen (TYPO3 Admin)
if ($request_uri ~* "/(contao/\S*)") { set $no_cache 1; }
#Kein Cache wenn ein Session Cookie gesetzt ist -> PHPSESSID
if ($http_cookie = "PHPSESSID") { set $no_cache 1; }