Ngnix

How to Install Drupal 8 with Nginx, PHP-FPM, MySQL, phpMyAdmin on Ubuntu 16.04 - Linode Guide

| 14 views

In this article, you will learn how to set up a Drupal 8 with Nginx, PHP-FPM, MySQL and phpMyAdmin. This article might not be complete, but you will find a lot of useful information Update: How to Install Drupal 8 with Nginx, PHP-FPM 7.2, MySQL, phpMyAdmin on Ubuntu 18.04 - Linode Guide Prerequisites Ubuntu 16.04 - 64bit version. Root privileges. You can get a cheap VPS for $10/mo from Linode. As I've few test Linodes already purchased I'm going to use one of them Follow basic security…


How to Install & Config Drupal 8 on Ubuntu 14.04 + Ngnix

| 1 views

In this article I will provide information how to install latest Drupal 8 version on Ubuntu 14.04 machine with Nginx. Tools involved: Putty, Notepad++ I assume you have already configured Nginx on your machine, if not, here is a tutorial for LEMP Server Ubuntu 12.04 for serving Drupal on Nginx, don't be afraid of version 12.04, as in version 14.04 the only differences that might occur are in Ngnix config blocks, which I will cover in this article. If you are looking for a great VPS server,…


Redirect non www to www - Apache .htaccess

| 1 views

It has been years since I last time used .htaccess file available in Apache. I'm using Ngnix servers for 99.9 of mine work. But today I had an opportunity to work on Apache environment, which uses .htaccess file. So in order to rewrite non www to www in Apache I added following rulles to .htaccess file: RewriteEngine On RewriteCond %{HTTP_HOST} !^www\. RewriteRule ^(.*)$ http://www.%{HTTP_HOST}/$1 [R=301,L]   For Ngnix please read this article: http://www.reinisfischer.com/ngnix-www-non…


How to configure postmarkapp to work with Drupal webform

| 1 views

If you are running your site under Apache then most probably your server will be auto configured with mail send module. But if you are running, lets say Ngnix without mail send function enabled, then you might consider some options to send e-mails from your site. And one of this options is to use Postmarkapp.com service. Today I'll show how to configure your Drupal powered site to deliver e-mails using postmarkapp and few handy modules. At first - go to the postmarkapp.com and sign up for a…


Nginx URL Redirection: From Non-WWW to WWW

| 15 views

Nginx is a popular web server used to host websites and applications. One of the common tasks in Nginx configuration is redirecting non-www URLs to their www counterparts. This is known as a "www redirect". The purpose of this redirect is to standardize the URL format, improve search engine optimization, and provide a consistent user experience. In this article, we will go over how to set up an Nginx redirect to www using Nginx configuration. Before we begin, it's important to note that this…


Configuring Nginx to Display 404 Page for Unconfigured Domains and Server IP Address

| 11 views

In today's digital age, it is crucial for website owners to have a properly configured web server. This not only ensures a smooth and seamless user experience but also protects the website from potential security threats. One common issue that website owners face is incorrectly indexed links in search engines like Google. In this article, we will provide a simple guide on how to configure Nginx to display a 404 page for unconfigured domains and your server's IP address. The first step in…


The Power of Nginx: A Comprehensive Guide to Nginx Web Server

| 4 views

Nginx (pronounced "engine x") is a high-performance web server and reverse proxy server. It is a free and open-source software that was first released in 2004. Since then, it has gained a lot of popularity and has become one of the most widely used web servers in the world, powering many of the largest websites and web applications. In this article, we'll take a closer look at what Nginx is, how it works, and why it's so popular. What is Nginx? Nginx is a web server that was designed to…