no way to compare when less than two revisions
Differences
This shows you the differences between two versions of the page.
| — | apache_tqm [2011/11/04 18:10] (current) – created - external edit 127.0.0.1 | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| + | ====== Sys Admin TQM Checklist ====== | ||
| + | |||
| + | ===== Apache ===== | ||
| + | |||
| + | * [[Apache]] | ||
| + | |||
| + | === Modules === | ||
| + | |||
| + | * mod_deflate | ||
| + | * mod_rewrite | ||
| + | * mod_ssl | ||
| + | |||
| + | === Global Configuration === | ||
| + | |||
| + | * Gentoo: ''/ | ||
| + | * CentOS: ''/ | ||
| + | * CentOS + CPanel: ''/ | ||
| + | |||
| + | < | ||
| + | IndexOptions FancyIndexing NameWidth=* SuppressDescription | ||
| + | ServerTokens Prod | ||
| + | TraceEnable off | ||
| + | ServerSignature Off | ||
| + | HostnameLookups Off | ||
| + | EnableMMAP On | ||
| + | EnableSendfile On | ||
| + | FileEtag INode MTime Size | ||
| + | ContentDigest On | ||
| + | </ | ||
| + | |||
| + | === MPM Prefork + mod_php === | ||
| + | |||
| + | == IfModule in .htaccess for compatiblity == | ||
| + | |||
| + | It would be better if they were in php.ini or using '' | ||
| + | |||
| + | < | ||
| + | < | ||
| + | php_value include_path " | ||
| + | </ | ||
| + | </ | ||
| + | |||
| + | === MPM Worker + PHP CGI === | ||
| + | |||
| + | * SuExec | ||
| + | * PHP overrides are in code or php.ini | ||
| + | |||
| + | < | ||
| + | AddType text/html .php .phps | ||
| + | AddHandler php-fastcgi .php .htm .html .js | ||
| + | AddHandler php-fastcgi-source .phps | ||
| + | Action php-fastcgi / | ||
| + | Action php-fastcgi-source / | ||
| + | DirectoryIndex index.php index.html | ||
| + | </ | ||
| + | |||
| + | === SSL === | ||
| + | |||
| + | * Domain name CRT | ||
| + | * SSL private key | ||
| + | * CABundle CRT | ||
| + | |||
| + | === VirtualHosts === | ||
| + | |||
| + | < | ||
| + | NameVirtualHost *:80 | ||
| + | NameVirtualHost *:443 | ||
| + | </ | ||