Konfigurasi Server Blocks Nginx (virtual hosts) di Ubuntu 20.04!!

Konfigurasi Server Blocks Nginx di Ubuntu 20.04, Nginx adalah salah satu web server terpopuler di dunia, popularitas nginx tidak kalah dengan popularitas apache, beberapa website besar yang memiliki trafik tinggi banyak yang menggunakan nginx sebagai web servernya, nginx lebih ringan dan terukur dan nginx juga dapat digunakan sebagai reverse proxy. untuk mengelola beberapa situs atau domain dalam satu server kita diharuskan untuk mengkonfigurasi server block, server block memungkinkan satu server meng-host beberapa situs, sangat cocok untuk anda yang ingin meng-host beberapa website dalam satu server. setiap domain yang ter-host di server akan di arahkan ke sebuah direktori yang berbeda, jadi saat pengunjung mengakses beberapa situs yang satu server akan menampilkan website yang berbeda.

Pada artikel ini akan dijelaskan bagaimana cara membuat server block di Ubuntu 20.04, sebelum melakukan tutorial ini pastikan anda telah membaca tutorial yang sudah di posting sebelumnya, bisa anda cek dibawah ini.

Dalam pembahasan ini kita akan membuat server block dengan 2 domain, domain pertama firstdomain.com dan yang kedua seconddomain.com

 

Step 1 – Creating directories for your domains

A default Nginx installation comes with one server block by default, /var/www/html. However, this isn’t particularly useful to us if we want to host multiple sites. We instead want to create two new directories in the www folder that match our domains:

sudo mkdir -p /var/www/firstdomain.com/html
sudo mkdir -p /var/www/seconddomain.com/html

With the directories created, we can assign ownership to a regular user so the sudo command is not required to write to them:

sudo chown -R $USER:$USER /var/www/firstdomain.com/html
sudo chown -R $USER:$USER /var/www/seconddomain.com/html

For dynamic sites, you may need to adjust the ownership to give some access to the www-data user. The exact requirements will vary depending on the service you’re trying to run, so check its documentation. WordPress, for example, may require you to run sudo shown -R www-data:www-data /var/www/yourdomain.com before you can update themes and plugins.

Step 2 – Creating test pages

Eventually, you’ll install WordPress or whatever service you plan to host in the directories we just created. For now, though, let’s create some quick test pages. It’s better to verify that everything is working correctly with these before doing any time-consuming work.

We don’t need anything fancy for this, so a very simple page made with html will do. Create one for your first site with:

nano /var/www/firstdomain.com/html/index.html

In the text editor paste the following:

<html>
	<head>
		<title>Hello World! This is FirstDomain!</title>
	</head>
	<body>
		<h1>Hello World! This is FirstDomain!</h1>
		<h2>If you're seeing this, then the firstddomain.com server block is working. Good job.</h2>
        <p>However, if you're seeing this on seconddomain.com, you may want to check your server block file in /etc/nginx/sites-available/ and make sure it's pointing to the right place</p>
	<body>
</html>
	

Save and close the file with Ctrl + O and Ctrl + X.

Now let’s do the same for our second domain:

nano /var/www/seconddomain.com/html/index.html

Let’s change the HTML to reflect that we’re visiting our second domain:

<html>
	<head>
		<title>Hello World! This is SecondDomain!</title>
	</head>
	<body>
		<h1>Hello World! This is SecondDomain!</h1>
		<h2>If you're seeing this, then the seconddomain.com server block is working. Good job.</h2>
        <p>However, if you're seeing this on firstdomain.com, you may want to check your server block file in /etc/nginx/sites-available/ and make sure it's pointing to the right place</p>
	<body>
</html>

Save and close the file with Ctrl + O and Ctrl + X.

Step 3 – Creating Nginx server block files

The content we have now isn’t particularly interesting, but it’s something for the webserver to serve visitors. What we don’t have are Nginx server block files, which are what will tell the webserver what to serve to which domain.

As we’re using Nginx to create multiple server blocks, we can cut down the busy work by simply copy-pasting config files and modifying them. Even better, the default Nginx directory already has a config that we can steal to provide a good starting point.

Nginx server blocks are defined in /etc/nginx/sites-available/ folder. Let’s copy the default config for use with our first domain:

sudo cp /etc/nginx/sites-available/default /etc/nginx/sites-available/firstdomain.com

Now to edit the file to suit our preferences:

sudo nano /etc/nginx/sites-available/firstdomain.com
Output:

server {
        listen 80;
        root /var/www/html;
        index index.php index.html index.htm index.nginx-debian.html;
        server_name _;

        location / {
                try_files $uri $uri/ =404;
        }

        location ~ \.php$ {
                include snippets/fastcgi-php.conf;
                fastcgi_pass unix:/var/run/php/php7.3-fpm.sock;
        }

        location ~ /\.ht {
                deny all;
        }

        include /etc/nginx/sites-available/*.conf;

}

First things first, the root /var/www/html; value is pointing to the wrong place. We want it to fetch content from /var/www/firstdomain.com/html instead. Change it to match the directory you defined earlier.

Now for our server name. As you may have guessed, you’ll want to put your domain here, firstdomain.com. However, you’ll also want to add a space, followed by www.firstdomain.com, so it looks like this:

server_name firstdomiain.com www.firstdomain.com

Without this, users may not be directed to your site if they put www. in front.

Now let’s talk a little about index pages. You’ll notice the line index index.php index.html index.htm index.nginx-debian.html;. This is the order Nginx will use when looking for index pages. If you aren’t using the test index file above then, you may want to re-order. index.php is common for WordPress installs, for example.

If you didn’t use the one-click LEMP install, you may also have the following lines in your config:

listen 80 default_server;
listen [::]:80 default_server;

You can only have one default_server. This is what Nginx will default to if someone tries to visit your IP without using one of your specified domain names. You set this as one of your domains or simply delete default_server from both to keep the default Nginx page specified in /etc/nginx/sites-available/default. This is what we’ll do today.

Your final config, then, should look something like this:

server {
        listen 80;
        root /var/www/firstdomain.com/html;
        index index.php index.html index.htm index.nginx-debian.html;
        server_name firstdomain.com www.firstdomain.com;

        location / {
                try_files $uri $uri/ =404;
        }

        location ~ \.php$ {
                include snippets/fastcgi-php.conf;
                fastcgi_pass unix:/var/run/php/php7.3-fpm.sock;
        }

        location ~ /\.ht {
                deny all;
        }

        include /etc/nginx/sites-available/*.conf;

}

Now to do the same for the second Nginx server block, this time copying our firstdomian config:

sudo cp /etc/nginx/sites-available/firstdomain.com /etc/nginx/sites-available/seconddomain.com

Edit it with sudo nano /etc/nginx/sites-available/seconddomain.com until it looks something like this:

server {
        listen 80;
        root /var/www/seconddomain.com/html;
        index index.php index.html index.htm index.nginx-debian.html;
        server_name seconddomain.com www.seconddomain.com;

        location / {
                try_files $uri $uri/ =404;
        }

        location ~ \.php$ {
                include snippets/fastcgi-php.conf;
                fastcgi_pass unix:/var/run/php/php7.3-fpm.sock;
        }

        location ~ /\.ht {
                deny all;
        }

        include /etc/nginx/sites-available/*.conf;

}

That should be all we need for now. Before we go forward, let’s just double check that there aren’t any typos. sudo nginx -t will check for syntax errors.

We should also edit nginx.conf to enable a hash bucket size of 64. This will help to prevent hash bucket memory problems, which can happen when you have multiple server names. Run:

sudo nano /etc/nginx/nginx.conf

Look for the line that reads server_names_hash_bucket_size 64 and delete the hash before it to enable it. Save and exit.

With that, restart Nginx to apply the server block changes:

sudo systemctl restart nginx

Step 3 – Testing your server blocks

If you’ve been using your own domains, you can verify everything is working by visiting them in an incognito browser tab on your local PC.

If you’re using our test domains, you can instead modify your local hosts file. This force your PC to believe that the domains point to your server even if they don’t. Bear in mind that this won’t work for anyone who hasn’t modified their hosts.

If your local PC is Linux or macOS, modifying hosts is simple. Just type sudo nano /etc/hosts and add the following (switching your.server.ip for the IP address of your VPS server):

your.server.ip firstdomain.com
your.server.ip seconddomain.com

In Windows, the easiest method is to download the open-source Hosts File Editor by Scott Lerch. After installing the program, just add the entries above to your hosts file, tick them, and press Save.

Visit the domains in incognito mode in your browser to verify your Ubuntu virtual hosts are working as intended. Incognito will ensure you don’t run into any caching issues, but it isn’t strictly necessary if you’ve never visited the domain before. You should see something like this:

first-domain

Once you purchase a domain to replace the test ones, don’t forget the delete the entries from your hosts file. Feel free to add additional server blocks as needed, but remember to be mindful of your server’s resources.

Tinggalkan Balasan

Alamat email Anda tidak akan dipublikasikan. Ruas yang wajib ditandai *