How to create fullchain from cert SSL and Ca SSL

On Manual Make a copy of cert.pem, name it fullchain. Open this copy, and paste ca.pem at the end. Done. ini terminal :   cat cert.pem ca.pem > fullchain.pem ...

View More
  Dibaca 29 kali

Cara Membuat Formulir Online Menggunakan Google Form

In this video, I'll show you how to make an online form using Google Form. Google Form is a free online tool that allows you to create simple forms that you can submit to websites or databases. Google Form is a great way to gather data from your website or website users. By using Google Form, you can easily create and manage a survey, gather feedback, and track user activity. In this video, I'll show you how to use Google Form to create an online form that you can use to collect data from your w ...

View More
  Dibaca 258 kali

How To Use SSL/TLS With Node.Js

  HTTPS Everywhere The HTTP/2 specification was published as RFC 7540 in May 2015, which means at this point it’s a part of the standard. This was a major milestone. Now we can all upgrade our servers to use HTTP/2. One of the most important aspects is the backwards compatibility with HTTP 1.1 and the negotiation mechanism to choose a different protocol. Although the standard doesn’t specify mandatory encryption, currently no browser supports HTTP/2 unencrypted. This gives HTTPS ...

View More
  Dibaca 1006 kali

Force https in subdomain

RewriteEngine on RewriteCond %{SERVER_PORT} ^80$ RewriteCond %{HTTP_HOST} ^sub\.domain\.com$ [NC] RewriteRule .? https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L] The differrences are: Specify port 80 not any port containing 80 as digits in the port number. Specify mail.fancyblue.net using No Case. If both conditions are met, redirect the {REQUEST_URI} to the secure server without duplicating Apache variables for {HTTP_HOST} and {REQUEST_URI}; any query string will not be affected. ...

View More
  Dibaca 879 kali