# defines environment variables for all underlying php processes env: key: value # rpc bus allows php application and external clients to talk to rr services. rpc: # enable rpc server enable: true # rpc connection DSN. Supported TCP and Unix sockets. listen: tcp://127.0.0.1:6001 # http service configuration. http: # http host to listen. address: 0.0.0.0:8080 ssl: # custom https port (default 443) port: 443 # force redirect to https connection redirect: true # ssl cert cert: server.crt # ssl private key key: server.key # max POST request size, including file uploads in MB. maxRequestSize: 200 # file upload configuration. uploads: # list of file extensions which are forbidden for uploading. forbid: [".php", ".exe", ".bat"] # cidr blocks which can set ip using X-Real-Ip or X-Forwarded-For trustedSubnets: ["10.0.0.0/8", "127.0.0.0/8", "172.16.0.0/12", "192.168.0.0/16", "::1/128", "fc00::/7", "fe80::/10"] # http worker pool configuration. workers: # php worker command. command: "php psr-worker.php pipes" # connection method (pipes, tcp://:9000, unix://socket.unix). default "pipes" relay: "pipes" # worker pool configuration. pool: # number of workers to be serving. numWorkers: 4 # maximum jobs per worker, 0 - unlimited. maxJobs: 0 # for how long worker is allowed to be bootstrapped. allocateTimeout: 60 # amount of time given to worker to gracefully destruct itself. destroyTimeout: 60 # monitors rr server(s) limit: # check worker state each second interval: 1 # custom watch configuration for each service services: # monitor http workers http: # maximum allowed memory consumption (soft) maxMemory: 100 # maximum time to live for the worker (soft) TTL: 0 # maximum allowed amount of time worker can spend in idle before being removed (for weak db connections, soft) idleTTL: 0 # max_execution_time (brutal) execTTL: 60 # static file serving. remove this section to disable static file serving. static: # root directory for static file (http would not serve .php and .htaccess files). dir: "public" # list of extensions for forbid for serving. forbid: [".php", ".htaccess"]