Posts

Showing posts from March, 2017

how to install positive ssl on your website using nginx webserver

Image
Now a days SSL is mandatory to encrypt information of website and also validate server identities to their visitors. If any site has no ssl, during user login most of the popular browser show that "this connection is not secure".

Add queue in Laravel 5.4 using beanstalkd and keep it live with supervisor

Image
Sometimes we need to add task that will take so much time. Like we want to convert a video to mp3 file. So this type of task we add to the queue. Then it converted on our server and after finishing the task we will show notification to the user. Today I will describe how to work on queue in laravel.