Как собрать nginx c postgresql,ngx rds json,the form input
Для того чтобы собрать nginx с поддержкой postgresql нам понадобится следующее:
- сам nginx;
- модуль postgresql;
- the ngx_rds_json module;
- the form input module;
- ngx_devel_kit.
- zlib;
- openssl;
- libressl.
Скачиваем все необходимые модули
Устанавливаем зависимости:
aptitude install libpq-dev checkinstall build-essential libpcre++-dev checkinstall gcc+ zip -y
Также нам понадобиться PCRE – ставим из исходников:
одником nginx, конфигурируем с путями до модулей(меняете до своих) и устанавливаем:
./configure --prefix=/etc/nginx --sbin-path=/usr/sbin/nginx --conf-path=/etc/nginx/nginx.conf --error-log-path=/var/log/nginx/error.log --http-log-path=/var/log/nginx/access.log --pid-path=/var/run/nginx.pid --lock-path=/var/run/nginx.lock --http-client-body-temp-path=/var/cache/nginx/client_temp --http-proxy-temp-path=/var/cache/nginx/proxy_temp --http-fastcgi-temp-path=/var/cache/nginx/fastcgi_temp --http-uwsgi-temp-path=/var/cache/nginx/uwsgi_temp --http-scgi-temp-path=/var/cache/nginx/scgi_temp --user=www-data --group=www-data --with-http_ssl_module --with-http_realip_module --with-http_addition_module --with-http_sub_module --with-http_dav_module --with-http_flv_module --with-http_mp4_module --with-http_gunzip_module --with-http_gzip_static_module --with-http_random_index_module --with-http_secure_link_module --with-http_stub_status_module --with-http_auth_request_module --with-mail --with-mail_ssl_module --with-file-aio --with-ipv6 --with-pcre=../pcre-8.38 --with-zlib=../zlib-1.2.8 --with-openssl=../openssl-1.0.2g --with-http_ssl_module --with-http_v2_module --add-module=../ngx_devel_kit-0.3.0rc1 --add-module=../ngx_postgres-1.0rc7 --add-module=../rds-json-nginx-module-0.14 --add-module=../form-input-nginx-module-0.11 make -j2 sudo checkinstall
Все файлы для сборки Nginx версии 1.8.1 и 1.9.14, а также собранный pcre для debian 8×64 можно скачать здесь.
Конфиг nginx with postgres
http { upstream database { postgres_server 127.0.0.1 dbname=mydatabase user=myuser password=mypassword; } server { listen 80; server_name localhost; location = /entries/ { postgres_pass database; rds_json on; postgres_query HEAD GET "SELECT foo, bar FROM mytable"; postgres_rewrite HEAD GET no_rows 403; } location = /entries/(?\d+)/delete/ { postgres_pass database; postgres_query DELETE "DELETE FROM mytable WHERE id=$num"i; postgres_rewrite DELETE no_changes 410; postgres_rewrite DELETE changes 204; } location = /entries/create/ { postgres_pass database; # reads the form parameter foo into the variable $foo set_form_input $foo; set_form_input $bar; postgres_escape $foo_escaped $foo; postgres_escape $bar_escaped $bar; postgres_query POST "INSERT INTO mytable (foo, bar) VALUES ($foo_escaped, $bar_escaped)"; } } }