Skip to main content

Posts

Featured

How to Get SSL/HTTPS for Localhost using Windows

# Install Local Cert with mkcert for Windows **NOTE**:Install Localhost Cert on Windows and website, mkcert is a simple tool for making locally-trusted development certificates. It requires no configuration. ## Run Powershell **NOTE**:Check if Policies restrictions: ``` PS C:\cert> Get-ExecutionPolicy ``` ## Install Choco Package to install Mkcert ``` PS C:\cert> Set-ExecutionPolicy Bypass -Scope Process -Force; [System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072; iex ((New-Object System.Net.WebClient).DownloadString('https://community.chocolatey.org/install.ps1')) ``` ## Install Choco output **OutPut**:Forcing web requests to allow TLS v1.2 (Required for requests to Chocolatey.org) Getting latest version of the Chocolatey package for download. Not using proxy. Getting Chocolatey from https://community.chocolatey.org/api/v2/package/chocolatey/2.2.2. Downloading https://community.chocolatey.org/api/v2/package/ch

Latest posts

How to create React website: Javascript ES6 Object & Array Destructuring

How to create React website: useState Hook

How to create React website: Conditional Rendering

How to create React website: Mapping Data to Components

How to create React website: PROPS | Power Code

How to create React website: Components | Power Code

How to create React website: Styling CSS

How to create React website: Javascript Expressions in JSX

How to create React website: Local Setup | Hello World

Azure Function to calculate Compound Interest with monthly deposits and retirement forecast