Generate and Configure a Self-Signed TLS/SSL Certificate for Nginx on Ubuntu 16.04

Samual Sam
Updated on 23-Jan-2020 08:19:02

633 Views

In this article, we will learn how to generate and configure a self-signed SSL/TSL certificates for Nginx on Ubuntu 16.04. TSL is transport layer security with predecessor SSL (Secure Sockets Layer) which is used to protect the normal traffic in encrypted packets, where the traffic transfers from server to the client and will not be intercepted by the outside intruders. The certificate will also help the users to verify the identity of the sites they visited are correct.Self-signed certificates can be used if we don’t have any proper domain name associated with the site or the server instances.PrerequisitesIn accomplishing this ... Read More

Get Funds for Your Startup

Samual Sam
Updated on 23-Jan-2020 08:16:07

193 Views

Lack of money must never be an obstacle to your entrepreneurial dream. Starting a business is like going to college, the investors are like scholarship sponsors. As scholarship comes in different forms, it might be provided by different groups in the form of business investments.It is a rare incident where entrepreneurs have the necessary capital which they require to start the business since most startups require financial assistance at some point of time to succeed.Recently, Indian prime minister Mr.Narendra Modi recently rolled out the red carpet for Indian Startups. He promised to offer tax breaks, freedom from inspector raj and ... Read More

Configure and Setup Ghost on Ubuntu 16.04

Sharon Christine
Updated on 23-Jan-2020 08:15:27

352 Views

In this article, we will learn how to setup and Configure Ghost on Ubuntu 16.04. Ghost os a light-weight and open-source blogging programs which can be used easily and can be customizable, also have many more themes to use.Pre-RequisitesIn this setup, we need the following –Ubuntu 16.04 installed server machine.A non-root user with Sudo permissions on the machine.Nginx web server installed on the server.Ghost Installation on Ubuntu 16.04We will install the ghost using the Ghosts official repository which is hosted on GitHub.First, we will get the latest version of the Ghost using the bellow command.$ wget https://ghost.org/zip/ghost-latest.zip Output:    --2017-05-18 ... Read More

Opportunities in Digital India

karthikeya Boyini
Updated on 23-Jan-2020 08:12:02

335 Views

Discussion and debate around the topic “Digital” and “Digital India” has increased in the past few years after the initiation of Digital India program by Government of India. GOI’s aim of bringing digital in governance, among people has increased in the recent years, where most of the government organization and services are migrated towards digital format. As a result of migration towards the digital life or digital India, opportunities for techies have increased. It has also influenced in the creation of large number of Startup communities in India.In this article, we are going to see the opportunities for the young ... Read More

Increase Page Views on Your Blog

Samual Sam
Updated on 23-Jan-2020 08:11:02

237 Views

The art of writing quality content is a virtue that many fail to possess. Despite writing genuine content and publishing it on blogs regularly and religiously, an area of concern that seems to be plaguing bloggers is that of HTTP traffic. Honestly speaking, getting huge HTTP traffic is not a child’s play. Building a blog is easy but building a blog with significant traffic is challenging.In this article, I would like to share my wealth of experience as a blogger and without any further ado, let us dig into the top 5 techniques that increase your blog’s traffic –Ask Influencers ... Read More

Prevent Twitter Accounts from Being Hacked

Samual Sam
Updated on 23-Jan-2020 08:09:41

171 Views

It has been more than a decade since the world had its first glance at social networking. With emerging technologies and with our fast growing adoption towards technology, Social Networking is being integrated into our lifestyle at an astounding rate. Whether sharing your most ecstatic moments or letting all your anger out. everything has been enriched, enhanced and revamped by the social networking giant called Twitter.Since its birth in July 2006, Twitter has raised the bars in the field of of conveying emotions and messages in the world of internet and social networking. It has grown, it has evolved and ... Read More

Change the Size of the Console Using PowerShell

Chirag Nagrekar
Updated on 23-Jan-2020 08:05:01

1K+ Views

You can change the size of the PowerShell Console with GUI and CLI both.With GUI −With CLI −To change the Width of the console,$host.UI.RawUI.WindowSize.Width = 150To change the Height of the console,$host.UI.RawUI.WindowSize.Height = 60

Change Foreground Color of Console Using PowerShell

Chirag Nagrekar
Updated on 23-Jan-2020 08:03:21

8K+ Views

Font color is termed as the Foreground color in the PowerShell. To change the font color you can use the console GUI property “Screen Text”. There are various 16 colors available and you can change RGB properties as well.CommandTo change the color with the script, use the below command.$Host.UI.RawUI.ForegroundColor = "Yellow"OutputYou can see the immediate change in the Foreground color.

Get Only Folders Using Get-ChildItem in PowerShell

Chirag Nagrekar
Updated on 23-Jan-2020 08:02:54

2K+ Views

To get only folders excluding files, we need to use –Attribute parameter with Directory attribute.CommandGet-ChildItem D:\Temp\ -Attributes DirectoryOutputDirectory: D:\Temp Mode                LastWriteTime         Length Name ----                -------------         ------ ---- d-----       13-12-2019     09:52                GPO_backup d-----       24-11-2018     11:31                LGPOSimilarly, you can combine different operations.To get the only system directories, use the below command.Get-ChildItem D:\Temp\ -Attributes Directory –System -RecurseTo get the system directories that are hidden.Get-ChildItem D:\Temp\ -Attributes Directory -Recurse –System -HiddenTo get the system directories which are Readonly.Get-ChildItem D:\Temp\ -Attributes Directory -Recurse –System -Readonly

Change Console Title Using PowerShell Command

Chirag Nagrekar
Updated on 23-Jan-2020 08:02:29

6K+ Views

For various reasons, you need to change the title of the PowerShell console. Like the title to describe the script. For example, System Information or Service Information.To change the PowerShell Console Title use the “WindowsTitle” property in RawUI. It is just a temporary change. When you close the console and open it again, the title will be set to the default.$host.UI.RawUI.WindowTitle = "System Information"Now the title of the PowerShell console is changed to “System Information”.You can also supply variable value to this parameter.$Title = "System Information" $host.UI.RawUI.WindowTitle = $Title

Advertisements