summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.rr.yaml3
-rw-r--r--README.md2
-rwxr-xr-xbuild.sh2
3 files changed, 5 insertions, 2 deletions
diff --git a/.rr.yaml b/.rr.yaml
index fc05112c..8fd42314 100644
--- a/.rr.yaml
+++ b/.rr.yaml
@@ -83,6 +83,9 @@ http:
# connection method (pipes, tcp://:9000, unix://socket.unix). default "pipes"
relay: "pipes"
+ # user under which process will be started
+ user: ""
+
# worker pool configuration.
pool:
# number of workers to be serving.
diff --git a/README.md b/README.md
index ac5b6483..30eb2ab3 100644
--- a/README.md
+++ b/README.md
@@ -46,7 +46,7 @@ Features:
- Very fast (~250k rpc calls per second on Ryzen 1700X using 16 threads)
- Integrations with Symfony, Laravel, Slim, CakePHP, Zend Expressive, Spiral
- Automatic reloading on file changes
-- Works on Windows
+- Works on Windows (Unix sockets (AF_UNIX) supported on Windows 10)
Installation:
--------
diff --git a/build.sh b/build.sh
index 5b36dbea..da6826f9 100755
--- a/build.sh
+++ b/build.sh
@@ -3,7 +3,7 @@ cd $(dirname "${BASH_SOURCE[0]}")
OD="$(pwd)"
# Pushes application version into the build information.
-RR_VERSION=1.7.0
+RR_VERSION=1.7.1
# Hardcode some values to the core package
LDFLAGS="$LDFLAGS -X github.com/spiral/roadrunner/cmd/rr/cmd.Version=${RR_VERSION}"