How to Read Unix Timestamp in Squid’s Access Log

When we use Squid to optimize web delivery, by default squid will log our network traffic. So, when we visit a site for example hanifmu.com, Squid will log our IP Address, date and time , and URL of hanifmu.com that we access. Squid’s access log can be found at /var/log/squid. Below example of squid’s access log: ...

Agustus 25, 2015 · Muhammad Hanif

Install Apache Web Server on CentOS 7

When you access a website, you actually access a web server. What is web server? Web server is a program that delivers web pages to you. Web server uses HTTP (Hypertext Transfer Protocol) or HTTPS (Hypertext Transfer Protocol Secure) protocol. ...

Juli 15, 2015 · Muhammad Hanif

Enable Nginx Status Page

In this tutorial, I will show you how to enable Nginx status page. The Nginx status page is a feature that provides real-time information about the performance and health of an Nginx web server. To enable the Nginx status page, you need to modify your Nginx configuration file and set up a location directive for the status page. ...

Juni 19, 2015 · Muhammad Hanif

How to Use PHP's Built-in Web Server

Since version 5.4, PHP has a built-in web server feature. But the feature is not intended to be a full-featured web server. We can use it for application development, testing purposes, and application demonstration. ...

Muhammad Hanif