Anwar

Posts

AWS How do I install a standard Let’s Encrypt SSL certificate in a Bitnami stack hosted on Amazon Lightsail?

Last updated: 2021-10-20 How do I install a standard SSL certificate for my website in an Amazon Lightsail instance with a Bitnami stack? Short description...

How to get temporary ftp URL for 1&1 hosting

You will need the following information to make an FTP connection: 1. FTP Hostname (you may use any domain name in the current package) 2....

How do I configure two network adapters in Ubuntu Server?

up vote 1 down vote favorite I have two network adapters. How do I setup both adapters in Ubuntu Server for squid? Adapter 1 (ip=192.168.2.100...

Redmin how to force redmine to build https urls (not http)?

I thought it might be useful to document how I secure the redmine appliance. I find this useful for private setups. It was a little...

ServerPilot How to Change the PHP Memory Limit

How to Change the PHP Memory Limit You can change the amount of memory PHP allots to each request by using a.user.ini file. Using .user.ini does not change...

Runcloud php custom module/ extension install

Installing custom PHP modules Since we are rolling our own PHP Version, apt-get install php-* won’t work because it will replace our php and there...

Goutte Set Cookies

$client->setServerParameter(‘HTTP_USER_AGENT’, ‘Mozilla/5.0 (X11; Ubuntu; Linux x86_64; rv:73.0) Gecko/20100101 Firefox/73.0’);   use Symfony\Component\BrowserKit\Cookie;   $client->getCookieJar()->set( new Cookie(‘store’, ‘english’) );   $client->getCookieJar()->set( new Cookie(‘currency’, ‘EUR’) );  ...

AWS GP2 VS GP3

Amazon EBS gp3 volumes are the latest generation of general-purpose SSD-based EBS volumes that enable customers to provision performance independent of storage capacity, while providing...

GIT-How to Push an Existing Project to GitHub

GitHub is simply a cloud-hosted Git management tool. Git is distributed version control, meaning the entire repo and history lives wherever you put it. People tend use...