Tag Archives: NGINX

How to install and configure Nginx on CentOS 7

How to install and configure Nginx on CentOS 7

nginx (engine x) is one of the most popular web servers in the world and is responsible for hosting some of the largest and most popular websites on the Internet. Nginx is known to be more resource friendly than Apache in some cases, and can be used as a web …

Basic commands for managing Nginx services

Error outputting nginx configuration

Pronounced “engine x”, Nginx is the best free, open source, and high-performance reverse proxy server program responsible for handling the loads of some of the largest sites on the Internet. Nginx can be used as both a standalone web server and a reverse proxy for Apache and other web servers. …

Optimized NGINX Configuration

How I optimized NGINX configuration for my several websites. NGINX is yet robust and powerful web server. Below is my optimized nginx.conf file. user www-data;worker_processes 16;worker_rlimit_nofile 787695;pid /run/nginx.pid;events { worker_connections 8192; multi_accept on; accept_mutex off;}http { ## # Map http agents to block all bots ## map $http_user_agent $limit_bots { …

How to Install NGINX

What is Nginx? NGINX is an fast and robust open source software that basically a web server used for reverse proxying, caching and load balancing. It also provides HTTP server capabilities and is mainly designed for maximum performance stability. It can be used as a proxy server for email (IMAP, …

Creating Vue.js Application using Nuxt.js and NGINX

Vue.js is one of the UI framework that highly in demand nowadays. It is very powerfull to build a Single Page Application along with other tools. Nuxt.js is also a framework build on top vue.js. Why bother to use Nuxt.js over Vue.js itself? Derick has explain very well about this: https://medium.com/vue-mastery/10-reasons-to-use-nuxt-js-for-your-next-web-application-522397c9366b …

Install Wildcard SSL certificate using NGINX and Cloudflare

A website with SSL certificate is now very common usage. Not that you can increase your secutiry, it can also increase trust the customer that visit your site.I already explain how to install Letsencrypt SSL in NGINX server in my previous tutorial.So, how to install wildcard SSL certificate if you …