Skip to main content

Posts

Showing posts from November, 2011

:: 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

:: How to install DirectAdmin on Linux CentOS

:: What is DirectAdmin DirectAdmin is a graphical web-based web hosting control panel designed to make administration of websites easier. – wikipedia :: DA License Make sure you have DA License before installing DirectAdmin :: How to install DirectAdmin on Linux CentOS + installing dependency for DA # yum install gcc gcc-c++ flex bison make bind bind-libs bind-utils openssl openssl-devel perl quota libaio libcom_err-devel libcurl-dev + installing DA # wget http://www.directadmin.com/setup.sh # chmod 755 setup.sh # ./setup.sh :: Testing Open DA using your web browser on : http://youripaddress:2222 :: Link + Google + DirectAdmin