Die installierten Pakete für Apache HTTP Server, PHP und MariaDB bringen bereits Konfigurationsdateien mit. Es empfiehlt sich, abweichende Einstellungen in gesonderten Dateien zu speichern, anstatt die vorhandenen Konfigurationsdateien anzupassen. Bei jedem Paket-Upgrade würden die abweichenden Einstellungen bemängelt oder überschrieben werden. Die Einstellungen der Standardkonfiguration werden durch die benutzerdefinierten ergänzt bzw. überschrieben.
Das memory_limit muss bei bedarf z.B. bei sehr großen Reports oder umfangreichen Dokumenten erhöht werden. Der Wert (in Sekunden) von session.gc_maxlifetime sollte größer oder gleich dem Session Timeout in den Systemeinstellungen von i-doit sein. Der Parameter date.timezone sollte auf die lokale Zeitzone anpasst werden (siehe Liste unterstützter Zeitzonen).
DirectoryIndex index.phpDocumentRoot /var/www/html/i-doit<Directory /var/www/html/i-doit>## See https://httpd.apache.org/docs/2.2/mod/core.html#allowoverrideAllowOverride FileInfo AuthConfig## Apache Web server configuration file for i-doit#### This file requires:#### - Apache HTTPD >= 2.4 with enabled modules:## - rewrite## - expires## - headers## - authz_core#### For performance and security reasons we put these settings## directly into the VirtualHost configuration and explicitly set## "AllowOverride FileInfo AuthConfig". After each i-doit update check if the .htaccess file, in the i-doit directory,## has changed and add the changes in the VirtualHost configuration.#### See the i-doit Knowledge Base for more details:## <https://kb.i-doit.com/>## Disable directory indexes:Options -Indexes +SymLinksIfOwnerMatch<IfModule mod_authz_core.c>RewriteCond %{REQUEST_METHOD}=GETRewriteRule "^$" "/index.php"## Deny access to meta files:<Files "*.yml">Require all denied</Files>## Deny access to hidden files:<FilesMatch "^\.">Require all denied</FilesMatch>## Deny access to bash scripts:<FilesMatch "^(controller|.*\.sh)$">Require all denied</FilesMatch>## Deny access to all PHP files…<Files "*.php">Require all denied</Files>## Deny access to wrongly created config backup files like ...inc.php.0123123 instead of ...inc.012341.php<FilesMatch "\.php\.\d+$">Require all denied</FilesMatch>## …except some PHP files in root directory:<FilesMatch "^(index\.php|controller\.php|proxy\.php)$"><IfModule mod_auth_kerb.c>Require valid-user</IfModule><IfModule !mod_auth_kerb.c>Require all granted</IfModule></FilesMatch>## …except some PHP files in src/:<Files "jsonrpc.php">Require all granted</Files>## …except some PHP files in src/tools/php/:<FilesMatch "^(rt\.php|barcode_window\.php|barcode\.php)$">Require all granted</FilesMatch>## …except some PHP files in src/tools/php/qr/:<FilesMatch "^(qr\.php|qr_img\.php)$">Require all granted</FilesMatch>## …except some PHP files in src/tools/js/:<FilesMatch "^js\.php$">Require all granted</FilesMatch></IfModule>## Deny access to some directories:<IfModule mod_alias.c>RedirectMatch 403 /imports/.*$RedirectMatch 403 /log/.*$RedirectMatch 403 /temp/.*(?<!\.(css|xsl))$RedirectMatch 403 /upload/files/.*$RedirectMatch 403 /upload/images/.*$RedirectMatch 403 /vendor/.*$</IfModule>## Cache static files:<IfModule mod_expires.c>ExpiresActive On# A2592000 = 30 daysExpiresByType image/svg+xml A2592000ExpiresByType image/gif A2592000ExpiresByType image/png A2592000ExpiresByType image/jpg A2592000ExpiresByType image/jpeg A2592000ExpiresByType image/ico A2592000ExpiresByType text/css A2592000ExpiresByType text/javascript A2592000ExpiresByType image/x-icon "access 1 year"ExpiresDefault "access 2 week"<IfModule mod_headers.c>Header append Cache-Control "public"</IfModule></IfModule>## Pretty URLs:<IfModule mod_rewrite.c>RewriteEngine OnRewriteRule favicon\.ico$ images/favicon.ico [L]RewriteCond %{REQUEST_FILENAME} !-lRewriteCond %{REQUEST_FILENAME} !-fRewriteCond %{REQUEST_FILENAME} !-dRewriteRule .* index.php [L,QSA]</IfModule>## Deny access to all ini files…<Files "*.ini">Require all denied</Files></Directory>TimeOut 600ProxyTimeout 600<FilesMatch "\\.php$"><If "-f %{REQUEST_FILENAME}">SetHandler "proxy:unix:/var/run/php-fpm/i-doit.sock|fcgi://localhost"</If></FilesMatch>
i-doit liefert abweichende Apache-Einstellungen in Dateien mit dem Namen .htaccess mit. Diese müssen nach jedem Update geprüft und in der VirtualHost Konfiguration aktualisiert werden.
Im nächsten Schritt wird der Apache HTTP Server neu gestartet:
1
sudosystemctlrestarthttpdphp-fpm
Damit Apache Lese- und Schreibrechte im künftigen Installationsverzeichnis von i-doit hat, muss dies von SELinux erlaubt werden:
Damit MariaDB eine gute Performance liefert und sicher betrieben werden kann, sind einige, wenige Schritte nötig, die penibel ausgeführt werden sollten. Dies fängt an mit einer sicheren Installation. Den Empfehlungen sollte gefolgt werden. Der Benutzer root sollte ein sicheres Passwort erhalten:
1
mysql_secure_installation
Anschließend wird MariaDB gestoppt und auf slow shutdown gesetzt:
12
mysql-uroot-p-e"SET GLOBAL innodb_fast_shutdown = 0"
sudosystemctlstopmariadb.service
Für die abweichenden Konfigurationseinstellungen wird eine neue Datei erstellt:
1
sudonano/etc/my.cnf.d/99-i-doit.cnf
Diese Datei enthält die neuen Konfigurationseinstellungen. Für eine optimale Performance sollten diese Einstellungen an die (virtuelle) Hardware angepasst werden:
[mysqld]# This is the number 1 setting to look at for any performance optimization# It is where the data and indexes are cached: having it as large as possible will# ensure MySQL uses memory and not disks for most read operations.## Typical values are 1G (1-2GB RAM), 5-6G (8GB RAM), 20-25G (32GB RAM), 100-120G (128GB RAM).innodb_buffer_pool_size=1G
# Use multiple instances if you have innodb_buffer_pool_size > 10G, 1 every 4GBinnodb_buffer_pool_instances=1# Redo log file size, the higher the better.# MySQL/MariaDB writes two of these log files in a default installation.innodb_log_file_size=512M
innodb_sort_buffer_size=64M
sort_buffer_size=262144# defaultjoin_buffer_size=262144# defaultmax_allowed_packet=128M
max_heap_table_size=32M
query_cache_min_res_unit=4096query_cache_type=1query_cache_limit=5M
query_cache_size=80M
tmp_table_size=32M
max_connections=200innodb_file_per_table=1# Disable this (= 0) if you have only one to two CPU cores, change it to 4 for a quad core.innodb_thread_concurrency=0# Disable this (= 0) if you have slow harddisksinnodb_flush_log_at_trx_commit=1innodb_flush_method=O_DIRECT
innodb_lru_scan_depth=2048table_definition_cache=1024table_open_cache=2048# Only if your have MySQL 5.6 or higher, do not use with MariaDB!#table_open_cache_instances = 4innodb_stats_on_metadata=0
sql-mode=""
Abschließend wird MariaDB gestartet:
1
sudosystemctlrestartmariadb.service
Zum Schluss müssen wir noch SELinux konfigurieren: