module



Nginx with PHP8.1 FPM on Ubuntu 20.04

  • avatar
  • 9.7K Views
  • 15 Likes
  • 6 mins read
Preview post image

PHP is a general-purpose scripting language geared towards web development. PHP code is usually processed on a web server by a PHP interpreter implemented as a module, a daemon or as a Common Gateway Interface (CGI) executable.

By default Nginx is not capable of processing dynamic web pages with PHP so it requires the use of specific additional plugins for this purpose. One of these plugins is FPM (FastCGI Process Manager). FPM is an alternative PHP FastCGI implementation with some additional features (mostly) useful for heavy-loaded sites. It is the preferred method of processing PHP pages with Nginx and is faster than traditional CGI based methods.

Running PHP8.2 with Nginx on Ubuntu

  • avatar
  • 9.0K Views
  • 6 mins read
Preview post image

PHP is a general-purpose scripting language geared towards web development. PHP code is usually processed on a web server by a PHP interpreter implemented as a module, a daemon or as a Common Gateway Interface (CGI) executable.

By default Nginx is not capable of processing dynamic web pages with PHP so it requires the use of specific additional plugins for this purpose. One of these plugins is FPM (FastCGI Process Manager). FPM is an alternative PHP FastCGI implementation with some additional features (mostly) useful for heavy-loaded sites. It is the preferred method of processing PHP pages with Nginx and is faster than traditional CGI based methods.

How to use an analog module with Arduino

  • avatar
  • 2.0K Views
  • 1 Like
  • 4 mins read
Preview post image

The KY-023 is an easy-to-use analog joystick. The joystick uses a biaxial potentiometer to control the X and Y axis. It also has an integrated push button. In this tutorial, it is shown how to connect the KY-023 joystick with the Arduino and how to use it.

 Join Our Monthly Newsletter

Get the latest news and popular articles to your inbox every month

We never send SPAM nor unsolicited emails

Running PHP8.3 with Nginx on Ubuntu

  • avatar
  • 1.2K Views
  • 2 Likes
  • 6 mins read
Preview post image

PHP is a scripting language widely used for web development, with code processed on a web server through a PHP interpreter, implemented as a module, daemon, or CGI executable. Nginx lacks the default ability to handle dynamic web pages with PHP and requires specific additional plugins for this purpose. One such plugin is FPM (FastCGI Process Manager), an alternative PHP FastCGI implementation offering additional features, particularly advantageous for high-traffic sites. FPM stands out as the preferred method for PHP page processing with Nginx, surpassing traditional CGI-based methods in terms of speed.

Interfacing laser diode module with Arduino

  • avatar
  • 1.1K Views
  • 4 mins read
Preview post image

Laser modules emit highly focused beams of light, making them ideal for a wide range of applications. One of the key aspects of a laser module is its power output, typically measured in milliwatts (mW). Arduino compatible laser modules typically have a power output within the lower range ensuring safety and compatibility with the microcontroller board. It's important to note that modules require safety precautions due to their increased risk of eye damage and potential fire hazards for higher-power lasers.

Using touch sensor with Arduino

  • avatar
  • 880 Views
  • 4 mins read
Preview post image

Touch sensor (also known as touch button) is widely used to control devices. It detects touch, force or pressure on its surface changing the logic state of the circuit. Actually, it works in very similar way as to buttons. Checkout the wiring and Arduino code implementation to track the current state and the state changes.

Regulated power supply module based on AMS1117

  • avatar
  • 1.0K Views
  • 5 Likes
  • 3 mins read
Preview post image

We often use the power supplies like batteries or direct AC/DC supply which are normally in higher ranges compared to the actual requirement for the circuit. In that cases we need this kind of voltage regulators which can regulate and vary the voltage levels for the circuit requirement.

The AMS1117 series of chips are linear voltage regulators with low voltage drop. The modules based on the AMS1117 chip provide constant 3.3V or 5V outputs from an unregulated DC input. It's very compact and can be included in your project schema or you can use it together with a breadboard for circuit testing.

Connecting tilt sensor with Arduino

  • avatar
  • 617 Views
  • 1 Like
  • 5 mins read
Preview post image

A tilt sensor is a type of sensor that can detect the orientation or tilt of an object relative to the force of gravity. It works by measuring the change in angle of the object with respect to the vertical axis.

Tilt sensors can be found in various forms, such as simple mechanical switches, mercury switches, and electronic sensors. They are commonly used in applications that require the detection of tilting or changes in orientation, such as in construction equipment, automotive safety systems, robotics, and gaming controllers.

Downloading and installing Node.js and NPM

  • avatar
  • 836 Views
  • 1 Like
  • 4 mins read
Preview post image

NPM stands for Node Package Manager, which is an application and repository for developing and sharing JavaScript code. To publish and install packages to and from the public NPM registry or a private NPM registry, you must install Node.js and the NPM command line interface using either a Node version manager or a Node installer.