#!/bin/env php [ "*:8000" => [ "pass" => "routes", "forwarded" => [ "client_ip" => "X-Forwarded-For", "recursive" => false, "source" => [ "172.17.0.0/16" ] ] ] ], "routes" => [ [ "match" => [ "uri" => "~/_(thumbs|images)/.*" ], "action" => [ "share" => [ '`/app/data/${uri.replace(/_(thumbs|images)\\/(..)(..)(.*?)\\/.*/, "$1/$2/$3/$2$3$4")}`', '`/app/data/${uri.replace(/_(thumbs|images)\\/(..)(.*?)\\/.*/, "$1/$2/$2$3")}`' ], "response_headers" => [ "Cache-Control" => "public, max-age=31556926" ] ] ], [ "action" => [ "share" => '/app/$uri', "types" => [ "image/*", "application/javascript", "text/css", "application/sourcemap", "!" ], "response_headers" => [ "Cache-Control" => "public, max-age=31556926" ], "fallback" => [ "pass" => "applications/shimmie" ] ] ] ], "applications" => [ "shimmie" => [ "type" => "php", "user" => "shimmie", "root" => "/app/", "script" => "index.php", "working_directory" => "/app/", "options" => [ "admin" => [ "memory_limit" => "256M", "max_file_uploads" => "$MAX_FILE_UPLOADS", "upload_max_filesize" => "$UPLOAD_MAX_FILESIZE", "post_max_size" => "$MAX_TOTAL_UPLOAD", ] ], "processes" => [ "max" => 8, "spare" => 2, "idle_timeout" => 60 ] ] ], "settings" => [ "http" => [ "max_body_size" => $MAX_TOTAL_UPLOAD, "static" => [ "mime_types" => [ "application/sourcemap" => [".map"] ] ] ] ] ]; file_put_contents('/var/lib/unit/conf.json', json_encode($config, JSON_PRETTY_PRINT|JSON_UNESCAPED_SLASHES)); // Start the web server pcntl_exec('/usr/sbin/unitd', ['--no-daemon', '--control', 'unix:/var/run/control.unit.sock', '--log', '/dev/stderr']);