init: workspace opencode sync

This commit is contained in:
2026-08-15 00:28:08 +07:00
commit 2451170708
122 changed files with 10549 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
#!/bin/sh
echo "=== php ini error ==="
grep -E "error_log|display_errors" /etc/php81/php.ini 2>/dev/null | head
echo "=== fpm pool ==="
grep -E "error_log|log_level|catch_workers|php_admin" /etc/php81/php-fpm.d/www.conf 2>/dev/null | head -20
echo "=== fpm master conf ==="
grep -E "error_log|log_level" /etc/php81/php-fpm.conf 2>/dev/null
echo "=== write test to /tmp ==="
php -r 'file_put_contents("/tmp/phpcheck.txt", "from-cli"); echo "written\n";'
ls -la /var/log/php81/ 2>/dev/null
ls -la /tmp/phpcheck.txt 2>/dev/null