I use Namecheap.com as a registrar, and they resale SSL Certs from a number of other companies, including Comodo.
These are the steps I went through to set up an SSL cert.
| add forwarding interface: | |
| netsh interface portproxy add v4tov4 listenport={srcPort} listenaddress={srcIp} connectport={DesPort} connectaddress={DesIp} | |
| show interface: | |
| netsh interface portproxy show v4tov4 | |
| delete interface: | |
| netsh interface portproxy delete v4tov4 listenport={srcPort} listenaddress={srcIp} | |
| ----------------------------- |
| /* By Stephan van Rooij | |
| * See https://svrooij.nl/2018/04/generate-x509certificate2-in-csharp/ | |
| */ | |
| using System; | |
| using System.Security.Cryptography.X509Certificates; | |
| using System.Security.Cryptography; | |
| using Org.BouncyCastle.X509; | |
| using Org.BouncyCastle.Utilities; |
| using System; | |
| using System.Collections.Generic; | |
| using System.Text; | |
| using System.Drawing; | |
| using System.IO; | |
| using System.Drawing.Imaging; | |
| private static void MergeTiffs(List<Bitmap> bmps, string filename) | |
| { | |
| // Save first bitmap to memory as TIFF |
| <?php | |
| /** | |
| * simple method to encrypt or decrypt a plain text string | |
| * initialization vector(IV) has to be the same when encrypting and decrypting | |
| * | |
| * @param string $action: can be 'encrypt' or 'decrypt' | |
| * @param string $string: string to encrypt or decrypt | |
| * | |
| * @return string | |
| */ |
| <VirtualHost *:80> | |
| ServerName forum.example.com | |
| Redirect permanent / https://forum.example.com | |
| </VirtualHost> | |
| <VirtualHost *:443> | |
| ServerName forum.example.com |
| upstream upstream-apache2 { | |
| server 127.0.0.1:8080; | |
| } | |
| upstream upstream-nodejs { | |
| server 127.0.0.1:3000; | |
| } | |
| server { | |
| listen 80; |
| <meta charset="utf-8"> | |
| <?php | |
| function tcno_dogrula($bilgiler){ | |
| $gonder = '<?xml version="1.0" encoding="utf-8"?> | |
| <soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> | |
| <soap:Body> | |
| <TCKimlikNoDogrula xmlns="http://tckimlik.nvi.gov.tr/WS"> | |
| <TCKimlikNo>'.$bilgiler["tcno"].'</TCKimlikNo> | |
| <Ad>'.$bilgiler["isim"].'</Ad> |
| # to generate your dhparam.pem file, run in the terminal | |
| openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048 |
I use Namecheap.com as a registrar, and they resale SSL Certs from a number of other companies, including Comodo.
These are the steps I went through to set up an SSL cert.
| #!/bin/sh | |
| # | |
| # Script to prepare and restore full and incremental backups created with innobackupex-runner. | |
| # | |
| # This script is provided as-is; no liability can be accepted for use. | |
| # | |
| INNOBACKUPEX=innobackupex-1.5.1 | |
| INNOBACKUPEXFULL=/usr/bin/$INNOBACKUPEX | |
| TMPFILE="/tmp/innobackupex-restore.$$.tmp" |