Easy way to install SSl on AWS EC2

0 |

As we know that SSL stands for Secure Socket Layers and is a public key infrastructure that uses the RSA method of encryption and authentication via security certificates. It helps to establish a secure connection between the client and the server through the secure protocol HTTPS. It is a perfect choice for protecting sensitive information, […]

csr file creation in apache

Generate CSR (Certificate Signing Request) file in Apache

1 |

CSR file creation in Apache is a simple process. CSR (Certificate Signing Request) file contains a block of encoded text, which is given by the applicant to a certificate authority when applying for an SSL certificate. It is usually generated on the server where the certificate will be installed. It contains information that will be included […]

Free SSL Certificate Creation

0 |

SSL certification is one of the common security feature of any web site. There are many certificate providers are available in the market, mostly all are paid service providers. But Certbot is one of the SSL certificate provider for free of cost. The following are the steps to create the free SSL certificate using cerbot […]

How to install laravel in ubuntu

1 |

Laravel is one of the popular PHP frameworks now. There are many ways to install the laravel framework. But we will be discussing two of them, which are very easy and are widely used. Laravel Installer Composer Before starting the laravel setup process, make sure that your server meets the following requirements. PHP >= 5.6.4 OpenSSL […]

Laravel Maintenance Mode

1 |

Laravel provides maintenance mode. If you enable Laravel Maintenance Mode, It will show a custom view to all your application requests. If you are updating your site or you want to put your application under maintenance means you can able to use this option.   Following is command to enable this mode php artisan down […]

WordPress web.config file

5 |

Redirection is one of the important thing in WordPress. WordPress uses .htaccess file to do the redirection process. Windows server not consider .htaccess file. so redirection won’t happen and the site will show 404 page. But windows server considers web.config file for the redirection process. so we have to create and write our redirection rules […]

Laravel Directory setup in Azure

0 |

Directory setup is an important process in Laravel projects. Laravel lifecycle always starts from the file `public/index.php`. Azure deploys everything you push to it into the `wwwroot` directory. To change the project startup point in Azure, Follow the below steps Click your web service link. It will list all settings under your web service Go […]

How to install composer in Azure

0 |

The composer is an important package manager in PHP. It is mainly used with Laravel for package management. The composer can be easily installed on Azure via Its extension manager. Follow the below steps Click your web service link. It will list all settings under your web service. Go to `DEVELOPMENT TOOLS` and click `Extensions` […]

How to change PHP version in Azure

0 |

Azure provides an option to install the needed PHP version according to our project. To change PHP version in Azure, Follow the below steps Log in to Azure, and click your web service link. It will list all settings under your web service Go to `SETTINGS` and click `Application Settings` Link. It will list all […]