web server

symfony installation

Basic apache(httpd) virtualhost with symfony project setup

Complete Setup of symfony in Linux Apache Server Virtualhost Configure HTTPD virtual host This is the basic configuration file in which each line is important and necessary. To add it into the virtual host. Edit this file according to your requirement. Open terminal using (ssh connection) cd /etc/httpd/conf.d/ vim filename.conf <VirtualHost *:80> ServerAdmin webmaster@your_domain.com DocumentRoot “/var/www/html/project_directory/” ServerName your_domain.com

Basic apache(httpd) virtualhost with symfony project setup Read More »

SSL installation in AWS Default IAM

A new scenario for installation of Let’sencrypt SSL into AWS IAM with the nignx server. Let start with SSL installation on Linux IAM in AWS HOw to install Letsencrypt SSL in AWS EC2 AWS IAM with Nginx Dowanload certbot-auto curl -O https://dl.eff.org/certbot-auto Give appropriate permission chmod +x certbot-auto Move it into /usr/local/bin sudo mv certbot-auto /usr/local/bin/certbot-auto OR

SSL installation in AWS Default IAM Read More »

Letsencrypt SSL certificate installation on centos and ubuntu with nginx and apache 1

Letsencrypt SSL certificate installation on centos and ubuntu with nginx and apache

Hello Everyone SSL is very important for any website to have a secure connection and I will tell you to How easily you can perform free ssl installation to your website. 1. SSL installation on Centos 6.* server with apache 2. SSL installation on Centos 6.* server with nginx 3. SSL installation on Centos 7

Letsencrypt SSL certificate installation on centos and ubuntu with nginx and apache Read More »

How to install and configure php7 , nginx on centos 7 2

How to install and configure php7 , nginx on centos 7

How to install nginx in centos 7 Update your server yum update Add epel repo as nginx is not available in Default repo yum install epel-release Install nginx yum install nginx Start the nginx services systemctl start nginx Enable the nginx so that when ever server restart , it should automatically start systemctl enable nginx

How to install and configure php7 , nginx on centos 7 Read More »