diff options
author | Wolfy-J <[email protected]> | 2019-05-02 22:39:37 +0300 |
---|---|---|
committer | Wolfy-J <[email protected]> | 2019-05-02 22:39:37 +0300 |
commit | 7e041fa89cf7b3289fa003b8e75430bb2af0cb08 (patch) | |
tree | 3c3ddb734a8078f78d987026b916718bb7fdcd22 | |
parent | b3a200d026f0251c83696b9deaf89e34d90c3d30 (diff) |
remove extra files
-rw-r--r-- | .rr.yaml | 67 |
1 files changed, 0 insertions, 67 deletions
diff --git a/.rr.yaml b/.rr.yaml deleted file mode 100644 index af4be374..00000000 --- a/.rr.yaml +++ /dev/null @@ -1,67 +0,0 @@ -# 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 (enabled by default) - 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. - maxRequest: 200 - - # file upload configuration. - uploads: - # list of file extensions which are forbidden for uploading. - forbid: [".php", ".exe", ".bat"] - - # 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 - -# 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"] |