LinuxHowto

How to enable nginx debug logging?

In this article we will explain how to enable Nginx debug logging .To enable debugging in NGINX, you will need to compile/re ... s always,Please drop us a note if you have any questions or feedback using our comment form below . Always Happy to Help ????

How to install openssl-devel on Ubuntu using apt-get?

How to install openssl-devel on Ubuntu using apt-get ? When i was trying to compile “nrpe” package on an Ubuntu Server, follo ... penSSL Team   This package provides libraries and header files for “libssl” and “libcrypto”. PDF Bedienungsanleitungen  

Tuning Nginx php-fpm for high Traffic

With the release  of php7, PHP  is most preferred  for High traffic websites/applications. PHP7 brings explosive performance ... ession happens at runtime it can also add some processing overhead. So watch the server CPU usage closely after enabling it .

Log POST data in nginx

How to configure nginx to log POST data in nginx? NGINX is a powerful web server that can easily tens of thousands of  HTTP r ... You will be able to see the logs here in the log 1 2 3   /var/log/nginx/nginx_post_data.log    

How to Install rbenv on Centos/Ubuntu?

How to Install rbenv on Centos/Ubuntu? Rbenv provides an easy way to install and manage various versions of Ruby on your mach ... Ruby versions that contain the given executable   Please let me know if you face any troubles. Always happy to help ????

How to change ssh port on Linux/Centos/Ubuntu?

Running SSH on a port other than 22 will make more unlikely to be hit with a random port scan. You will be targeted only if t ... 1 2 3   ssh –p 20786 user@IPADDRESS –v   Feel free to contact me if you face any issue. Always Happy to help ????

Block access to.git folder in nginx

How to Block access to .git folder in nginx? If you have your code in a git Repository and you are cloning that repository on ... 3 4 5   location ~ /\.svn {   deny all; }   Don’t forget to restart nginx after making changes in configuration ????

Fixed: AC LIBLTDL CONVENIENCE: command not found

I was getting this error while configuring Collectd 1 2 3 4 5 6 7   ./configure —enable–all–plugins ./configure: l ... brary Fix : Install libtool On Centos 1 2 3 yum install libtool–ltdl libtool–ltdl–devel libtool  

How to start httpd/apache in foreground?

In this article we will discuss how to start Httpd/Apache in foreground. How to start httpd/apache in foreground? You can sta ... oaded module authn_anon_module [Thu Feb 16 20:12:45 2017] [debug] mod_so.c(246): loaded module authn_dbm_module    

How to run nginx on Foreground?

How to run nginx on Foreground? By default, when you start nginx service it will start in self-daemonize mode, that mean ngin ... e command line You can start nginx on foreground, using below command 1 2 3   nginx –g ‘daemon off;’    

Setting Up Docker Registry with S3 Storage

As you know , putting your container images in Docker public Registry is not a good idea, because anyone can pull it from doc ... se iptables/firewalld for this. Feel free to contact me if you have any questions or feedbacks, using the comments below ????