Improve session cookie security with HttpOnly and SameSite attributes Add security headers via .htaccess Block direct access to sensitive files Restrict allowed HTTP methods Document cPanel-specific security configuration Add container hardening for ServerTokens and ServerSignature
2.6 KiB
Security Hardening — cPanel Shared Hosting
The container dev environment (Containerfile + apache.conf) handles most hardening automatically. On cPanel shared hosting, some settings must be configured manually since you don't control the Apache or PHP config directly.
What's handled by .htaccess (works everywhere)
These are applied automatically via content/.htaccess (synced from .htaccess.base):
- Block direct access to
.ini,.md,.html,.phpcontent files - Security headers:
X-Content-Type-Options,X-Frame-Options,Referrer-Policy,Permissions-Policy - Strip
X-Powered-Byheader - Restrict HTTP methods to GET/POST/HEAD
- Rewrite rules routing all requests through
index.php
The custom/.htaccess and custom/data/.htaccess files also deploy automatically and block direct access to config files and data.
What needs manual cPanel configuration
1. Disable display_errors
Go to MultiPHP INI Editor (Home > Software > MultiPHP INI Editor):
- Select the domain
- Set
display_errors= Off - Set
log_errors= On - Set
expose_php= Off
This prevents PHP errors from leaking server paths and internal details to visitors.
2. PHP version
Use MultiPHP Manager to ensure PHP 8.4+ is selected for the domain.
3. Session cookie hardening
Handled in content/index.php via ini_set() calls — no cPanel action needed. The entry point sets HttpOnly, SameSite=Lax, and Secure (when on HTTPS) before any session starts.
4. Server version header
On shared hosting you typically cannot change ServerTokens (it's a server-level directive). The X-Powered-By header is stripped by .htaccess, but the Server: Apache/2.4.x header may still show the full version. This is a low-risk issue on shared hosting since the Apache version is the hosting provider's responsibility.
5. SSL/TLS
Use SSL/TLS (Home > Security > SSL/TLS) or AutoSSL to ensure HTTPS is active. The session cookie Secure flag only activates over HTTPS.
Checklist
.htaccessdeployed (copy.htaccess.baseif needed, preserve cPanel-generated blocks)display_errors= Off in MultiPHP INI Editorexpose_php= Off in MultiPHP INI Editorlog_errors= On in MultiPHP INI Editor- SSL certificate active
custom/smtp-config.phpexists but is NOT in git (check.gitignore)custom/listmonk-config.phpexists but is NOT in git (check.gitignore)custom/data/directory writable by web server (chmod 755or775)custom/data/.htaccesspresent withRequire all denied