| Server IP : 35.80.110.71 / Your IP : 216.73.216.221 Web Server : Apache/2.4.58 (Ubuntu) System : Linux ip-172-31-21-44 6.17.0-1019-aws #19~24.04.1-Ubuntu SMP Tue Jun 23 18:53:06 UTC 2026 x86_64 User : ubuntu ( 1000) PHP Version : 8.3.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : OFF Directory : /etc/logrotate.d/ |
Upload File : |
# PLAN-281 §5.4 — log rotation for the staging instance.
#
# Install at /etc/logrotate.d/client-portal-staging, then:
# sudo logrotate -d /etc/logrotate.d/client-portal-staging # dry-run
# sudo logrotate -f /etc/logrotate.d/client-portal-staging # force a real run to validate
#
# Without this, staging logs fill the shared disk and can crash prod.
# `copytruncate` keeps long-lived processes (Reverb, queue workers) writing
# to the same FD across rotations — no need to send SIGHUP.
/var/log/supervisor/staging-*.log
/var/log/php-staging-*.log
/var/log/client-portal-staging-*.log
/var/www/client-portal-laravel-staging/shared/storage/logs/*.log
{
daily
rotate 7
compress
delaycompress
missingok
notifempty
copytruncate
su www-staging www-data
}