17.11.11

:: Install NginX from source

:: What is NGINX
nginx [engine x] is an HTTP and reverse proxy server, as well as a mail proxy server, written by Igor Sysoev. o nginx

:: How to install NGINX from source on OpenSUSE
+ installing dependency
# zypper in pcre-devel zlib-devel libopenssl-devel
+ create username and group
# groupadd nginx
# useradd -r -g nginx nginx
+ compile and installing nginx
# wget http://nginx.org/download/nginx-1.1.8.tar.gz
# tar -xzf nginx-1.1.8.tar.gz
# cd nginx-1.1.8
# ./configure --user=nginx --group=nginx --with-http_ssl_module
# make && make install

:: Starting / restarting httpd
# /usr/local/nginx/sbin/nginx
# /usr/local/nginx/sbin/nginx -s reload

:: Link
+ Google
+ BlacKonsole