[SOLVED] ERROR: Error response from daemon: Get https://myregistry:5000: http: server gave HTTP response to HTTPS client
This is a solution for both: Linux and Windows.
You maybe came across this error pushing or pulling to/from
Develop a chatroom using Ionic3, socket.io and Nodejs
Socket.io
Socket.io is a Javascript library that enables real-time, bidirectional and
event-based communication.
Sometimes we hear that socket.
Solve "The image you uploaded was larger than the maximum file size your server allows" on NGINX+Ghost
Simply add
client_max_body_size 5M;
(replace 5M with your needs) on nginx.conf
Example
{
listen 80;
..
server_name
Use ncftpput instead of ftp for recursive uploads
Problem
I came across this problem when i had the need to transfer a Wordpress site from
a server to
Set SASS the default style format on Angular/Ionic
Angular 6+
ng config defaults.styleExts sass
Ionic 4+
ionic config set defaults.styleExts sass
Execute "COPY .. FROM stdin" in postgres database
psql -h HOST -p PORT -f import.sql -U USER -d DEFAULTDB
* HOST
* PORT
* USER
* DEFAULTDB
import.sql
COPY public.
Easy way to pass async data as a function's input
Problem
Pass async data (like observable) as an input of a function.
Workaround
My Experience with NgRx state manager on Ionic
Intro
In this article I will talk of my experience with NgRX, a reactive extension for
Angular to manage state.
Static website on AWS S3 bucket (SSL secure)
Aim
Set up a static website using an S3 bucket (Amazon Web Services) as a root
folder.
SSL certificate provided
Set up docker Wordpress behind docker NGINX with SSL
Working solution to run Wordpress using official Docker image.
A step by step guide.