浏览 4k
This module is production-ready and it's compatible with following nginx releases:
postgres_server ip[:port] dbname=dbname user=user password=passnoneupstreamSet details about the database server.
postgres_keepalive off | max=count [mode=single|multi] [overflow=ignore|reject]max=10 mode=single overflow=ignoreupstreamConfigure keepalive parameters:
max - maximum number of keepalive connections (per worker process),mode - backend matching mode,overflow - either ignore the fact that keepalive connection pool is full and allow request, but close connection afterwards or reject request with 503 Service Unavailable response.postgres_pass upstreamnonelocation, if locationSet name of an upstream block that will be used for the database connections (it can include variables).
postgres_query [methods] querynonehttp, server, location, if locationSet query string (it can include variables). When methods are specified then query is used only for them, otherwise it's used for all methods.
This directive can be used more than once within same context.
postgres_rewrite [methods] condition [=]status_codenonehttp, server, location, if locationRewrite response status_code when given condition is met (first one wins!):
no_changes - no rows were affected by the query,changes - at least one row was affected by the query,no_rows - no rows were returned in the result-set,rows - at least one row was returned in the result-set.When status_code is prefixed with = sign then original response body is send to the client instead of the default error page for given status_code.
By design both no_changes and changes apply only to INSERT, UPDATE, DELETE, MOVE, FETCH and COPY SQL queries.
This directive can be used more than once within same context.
postgres_output rds|text|value|binary_value|nonerdshttp, server, location, if locationSet output format:
rds - return all values from the result-set in rds format (with appropriate Content-Type),text - return all values from the result-set in text format (with default Content-Type), values are separated by new line,value - return single value from the result-set in text format (with default Content-Type),binary_value - return single value from the result-set in binary format (with default Content-Type),none - don't return anything, this should be used only when extracting values with postgres_set for use with other modules (without Content-Type).postgres_set $variable row column [optional|required]nonehttp, server, locationGet single value from the result-set and keep it in $variable.
When requirement level is set to required and value is either out-of-range, NULL or zero-length, then nginx returns 500 Internal Server Error response. Such condition is silently ignored when requirement level is set to optional (default).
Row and column numbers start at 0. Column name can be used instead of column number.
This directive can be used more than once within same context.
postgres_escape $escaped [[=]$unescaped]nonehttp, server, locationEscape and quote $unescaped string. Result is stored in $escaped variable which can be safely used in SQL queries.
Because nginx cannot tell the difference between empty and non-existing strings, all empty strings are by default escaped to NULL value. This behavior can be disabled by prefixing $unescaped string with = sign.
postgres_connect_timeout timeout10shttp, server, locationSet timeout for connecting to the database.
postgres_result_timeout timeout30shttp, server, locationSet timeout for receiving result from the database.
Number of columns in received result-set.
Number of rows in received result-set.
Number of rows affected by INSERT, UPDATE, DELETE, MOVE, FETCH or COPY SQL query.
SQL query, as seen by PostgreSQL database.
Return content of table cats (in rds format).
http {
upstream database {
postgres_server 127.0.0.1 dbname=test
user=test password=test;
}
server {
location / {
postgres_pass database;
postgres_query "SELECT * FROM cats";
}
}
}
Return only those rows from table sites that match host filter which is evaluated for each request based on its $http_host variable.
http {
upstream database {
postgres_server 127.0.0.1 dbname=test
user=test password=test;
}
server {
location / {
postgres_pass database;
postgres_query SELECT * FROM sites WHERE host='$http_host'";
}
}
}
Pass request to the backend selected from the database (traffic router).
http {
upstream database {
postgres_server 127.0.0.1 dbname=test
user=test password=test;
}
server {
location / {
eval_subrequest_in_memory off;
eval $backend {
postgres_pass database;
postgres_query "SELECT * FROM backends LIMIT 1";
postgres_output value 0 0;
}
proxy_pass $backend;
}
}
}
Required modules (other than ngx_postgres):
Restrict access to local files by authenticating against PostgreSQL database.
http {
upstream database {
postgres_server 127.0.0.1 dbname=test
user=test password=test;
}
server {
location = /auth {
internal;
postgres_escape $user $remote_user;
postgres_escape $pass $remote_passwd;
postgres_pass database;
postgres_query "SELECT login FROM users WHERE login=$user AND pass=$pass";
postgres_rewrite no_rows 403;
postgres_output none;
}
location / {
auth_request /auth;
root /files;
}
}
}
Required modules (other than ngx_postgres):
Simple RESTful webservice returning JSON responses with appropriate HTTP status codes.
http {
upstream database {
postgres_server 127.0.0.1 dbname=test
user=test password=test;
}
server {
set $random 123;
location = /numbers/ {
postgres_pass database;
rds_json on;
postgres_query HEAD GET "SELECT * FROM numbers";
postgres_query POST "INSERT INTO numbers VALUES('$random') RETURNING *";
postgres_rewrite POST changes 201;
postgres_query DELETE "DELETE FROM numbers";
postgres_rewrite DELETE no_changes 204;
postgres_rewrite DELETE changes 204;
}
location ~ /numbers/(?<num>\d+) {
postgres_pass database;
rds_json on;
postgres_query HEAD GET "SELECT * FROM numbers WHERE number='$num'";
postgres_rewrite HEAD GET no_rows 410;
postgres_query PUT "UPDATE numbers SET number='$num' WHERE number='$num' RETURNING *";
postgres_rewrite PUT no_changes 410;
postgres_query DELETE "DELETE FROM numbers WHERE number='$num'";
postgres_rewrite DELETE no_changes 410;
postgres_rewrite DELETE changes 204;
}
}
}
Required modules (other than ngx_postgres):
Use GET parameter in SQL query.
location /quotes {
set_unescape_uri $txt $arg_txt;
postgres_escape $txt;
postgres_pass database;
postgres_query "SELECT * FROM quotes WHERE quote=$txt";
}
Required modules (other than ngx_postgres):
ngx_postgres comes with complete test suite based on Test::Nginx.
You can test core functionality by running:
$ TEST_NGINX_IGNORE_MISSING_DIRECTIVES=1 prove
You can also test interoperability with following modules:
by running:
$ prove
Copyright (c) 2010, FRiCKLE Piotr Sikora <info@frickle.com>
Copyright (c) 2009-2010, Xiaozhe Wang <chaoslawful@gmail.com>
Copyright (c) 2009-2010, Yichun Zhang <agentzh@gmail.com>
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions
are met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
HOLDERS OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
This software includes also parts of the code from:
nginx (copyrighted by Igor Sysoev under BSD license),ngx_http_upstream_keepalive module (copyrighted by Maxim Dounin under BSD license).
按点赞数排序
按时间排序
微信公众号
加入微信群