The installed packages for Apache HTTP Server, PHP and MariaDB already include configuration files. It is recommended to save deviating settings in separate files instead of adapting the existing configuration files. With every package upgrade, the deviating settings would be rejected or overwritten. The settings of the standard configuration are supplemented or overwritten by the user-defined settings.
The memory_limit must be increased if necessary, e.g. for very large reports or extensive documents. The value (in seconds) of session.gc_maxlifetime should be greater than or equal to the session timeout in the system settings of i-doit. The date.timezone parameter should be adjusted to the local time zone (see List of supported time zones).
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-doitvides different Apache settings in files with the name .htaccess. These must be checked after each update and updated in the VirtualHost configuration.
In the next step, the Apache HTTP server is restarted:
1
sudosystemctlrestarthttpdphp-fpm
In order for Apache to have read and write permissions in the future installation directory of i-doit, this must be permitted by SELinux:
To ensure that MariaDB delivers good performance and can be operated securely, a few steps are necessary that should be carried out meticulously. This starts with a secure installation. The recommendations should be followed. The user root should be given a secure password:
[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=""