From f08c68f232381a5f4f3f3a29ef9cf7a30606f7c1 Mon Sep 17 00:00:00 2001 From: Igor Sysoev Date: Wed, 6 Sep 2017 23:46:20 +0300 Subject: [PATCH] README: shortened description. --- README.md | 17 ++++++----------- 1 file changed, 6 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 3a22ad18..93002e05 100644 --- a/README.md +++ b/README.md @@ -827,18 +827,11 @@ Example: Configure NGINX as a static web server and reverse proxy in front of Unit. -NGINX serves static files directly from the filesystem, and the requests to the -applications are forwarded to Unit. +NGINX serves static files directly from the filesystem, and the requests +to the applications are forwarded to Unit. -Create an upstream block in `http` context of NGINX configuration: - -``` -upstream unit_backend { - -} -``` - -Add Unit server IP and port to the upstream block, for example: +Create an upstream block in `http` context of NGINX configuration and add +Unit server IP and port to the upstream block, for example: ``` upstream unit_backend { @@ -857,9 +850,11 @@ to Unit. All other files will be served directly by NGINX: ``` server { + location / { root /var/www/static-data; } + location ~ \.php$ { proxy_pass http://unit_backend; proxy_set_header Host $host;