Apache

access_compat: Für Abwärtskompatibilität mit älteren Zugriffssteuerungsrichtlinien. Zugriffskontrolle für ältere Versionen. 
aclr: Zugriffskontrolllisten für feingranulare Berechtigungen. Zugriffskontrolllisten. 
allowmethods: Beschränkt die erlaubten HTTP-Methoden. Erlaubte HTTP-Methoden festlegen. 
auth_basic: Grundlegende HTTP-Authentifizierung. 
auth_digest: Implementiert Digest-Authentifizierung. Digest-Authentifizierung für HTTP. 

Neue Konfigurationsdatei (.ini) erstellen: \etc\php\7.0\cgi\conf.d\meine_eigene.ini

memory_limit = 2G

upload_max_size = 2G

post_max_size = 2G

upload_max_filesize = 2G

max_execution_time = 300

max_input_time = 3600

max_file_uploads = 1000

xdebug.max_nesting_level = 512

session.gc_maxlifetime = 86400

# service apache2 reload

 

 

Lets-Encrypt / Certbot Error:

Certbot Installation (durch shell root) klappt nicht:

#/path/to/certbot/certbot-auto --apache

...

Installing Python packages...

Installation succeeded.

Saving debug log to /var/log/letsencrypt/letsencrypt.log

The apache plugin is not working; there may be problems with your existing configuration.

The error was: NotSupportedError('Apache plugin support requires libaugeas0 and augeas-lenses version 1.2.0 or higher, please make sure you have you have those installed.',)

 

Redirect www to non www properly (wildcard / any hostname)

RewriteEngine On RewriteBase /

RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC] RewriteRule ^(.*)$ http://%1/$1 [R=301,L]

 

Redirect www.example.com to example.com (with hostname):

RewriteEngine on

RewriteCond %{HTTP_HOST} ^example.com [NC]

RewriteRule ^(.*)$ http://www.example.com/$1 [L,R=301,NC]

Suche

Neueste Kommentare