Friday, December 22, 2023

How to Install phpMyAdmin with Nginx in ubuntu

PhpMyAdmin is a free and open-source web-based database management tool written in PHP. It provides a graphical web interface for users to manage MySQL or MariaDB database.

Tuesday, December 19, 2023

Install Magento 2 On Ubuntu Using Nginx

 

In this tutorial we are going to Install and Setup the Initial project of Megento2.

Table of Contents:

Step 1: Install Nginx
Step 2: Install MySQL and Create Database for Magento2
Step 3: Install PHP and required extensions
Step 4: Install and configure Elasticsearch
Step 5: Install Composer
Step 6: Download and Install Magento2
Step 7: Install sample data for Magento2

Friday, November 10, 2023

Grant an IAM user access to a single S3 bucket

"In this guide , We will learn to configure an IAM policy using which we can provide access to an IAM user for a Specific S3 Bucket and/or folder within the S3 Bucket."

Thursday, July 20, 2023

Serve static content from S3 Bucket with CloudFront

In this Tutorial We are going to restrict access to an S3 bucket objects so that your object are only accessible through CloudFront and Origin Access Identity.

Friday, June 23, 2023

Dockerizing a Fresh Python Django Web Application

Python is a computer programming language. often used to build websites and software, automate tasks, and conduct data analysis.

It is used for:-

  • web development (server-side),
  • software development,
  • system scripting,
  • automate tasks & conduct data analysis.

Friday, June 9, 2023

Popular WEB Development Technologies And Their Frameworks

HTML/CSS:

HTML (Hypertext Markup Language): The standard markup language used for creating the structure and content of web pages.

Thursday, June 1, 2023

Affiliate Marketing

1) Thesslstore Affiliate https://affiliate.thesslstore.com/

Tuesday, May 30, 2023

Install Magento 2 on Ubuntu

In this tutorial we are going to Install and Setup the Initial project of Megento2.

Table of Contents:

Step 1: Install Apache2
Step 2: Install MySQL and Create Database for Magento2
Step 3: Install PHP and required extensions
Step 4: Install and configure Elasticsearch
Step 5: Install Composer
Step 6: Download and Install Magento2
Step 7: Install sample data for Magento 2

Thursday, April 6, 2023

Run React Project With Subdirectory URL

In this Blog we are going to execute react project with the sub-directory URL rather than port or separate domain.

Thursday, January 19, 2023

AWS Always Free Services ?

"In this tutorial, I have described some of the AWS services that are available under the "Always Free" category."

Here Is the AWS Always Free Service Official link (Click Here)

Friday, January 6, 2023

example of cloudformation Metadata, Parameters and Outputs section

In This tutorial we are introducing another CF sections, which as follow.

1) Metadata:
section lets you associate a resources with structured data(in sequence) during the template runtime.

Friday, December 30, 2022

How to Create a VPC Using Cloudformation

Below Are the Points which we will following in sequence.

  1. Create VPC
  2. Create Public Subnets
  3. Create Internet Gateway
  4. Attach the Internet Gateway to the VPC
  5. Create Public Route Table
  6. Create Public Route and add to the Public Route Table
  7. Associate the Public Subnets with the Public Route Table
  8. Create EC2 Instance
  9. Create SSH Key Pair
  10. Create ElasitcIP
  11. Create Security Group

Wednesday, December 28, 2022

What Is Cloudformation ?

Cloudformation is an infrastructure as code tool that will allow you to create and configure aws resources by the help of single configuration file, also known as cf file.

CloudFormation was first introduced in July 2011
CloudFormation uses JSON or YAML Language.

Wednesday, December 21, 2022

Migrating OnPremise VM to Amazon EC2

In this blog we are going to migrate OnPremise Virtual Machine to aws EC2.

Prerequisites:

  • IAM User with "Administrator" Access
  • AWS CLI installed on your machine & Configure "aws configure" 
  • Virtual Machine as "Oracle VM VirtualBox" and Etc.

Wednesday, December 14, 2022

Types of Input Variables In Terraform ?

Variables are a great way to define centrally controlled reusable values. The information in Terraform variables is saved independently from the deployment plans, which makes the values easy to read and edit from a single file.

Note : All the variables commonly are in a file vars.tf & variable.tf. You also can modify the file name whatever you want.