Open ssl.conf in a text editor.
Edit the domain(s) listed under the [alt_names] section so that they match the local domain name you want to use for your project, e.g.
DNS.1 = my-project.dev
Additional FQDNs can be added if required:
| git config core.commentChar ';' |
This focuses on generating the certificates for loading local virtual hosts hosted on your computer, for development only.
Do not use self-signed certificates in production ! For online certificates, use Let's Encrypt instead (tutorial).
Take note this is my personal edited version and the command related to Arch has been changed to work on my Arch system.
| $wingetCompleter = { | |
| param($wordToComplete, $commandAst, $cursorPosition) | |
| $tokens = $commandAst.Extent.Text.Trim() -split '\s+' | |
| $completions = switch ($tokens[1]) { | |
| 'install' { "-q","-m","-v","-s","-e","-i","-h","-o","-l", | |
| "--query","--manifest","--id","--name","--moniker","--version","--source","--exact","--interactive", | |
| "--silent","--log","--override","--location","--help"; break } | |
| 'search' { "-q","-s","-n","-e","-?", | |
| "--query","--id","--name","--moniker","--tag","--command","--source","--count","--exact","--help" |
Every now and then I need to create a self signed certificate in azure for something. In my particular case its Azure B2C. I am using a mac so its not simply just running something like
New-SelfSignedCertificate `
-KeyExportPolicy Exportable `
-Subject "CN=yourappname.yourtenant.onmicrosoft.com" `
-KeyAlgorithm RSA `Make your Arch fonts beautiful easily! This is what I do when I install Arch Linux to improve the fonts.
You may consider the following settings to improve your fonts for system-wide usage without installing a patched font library packages (eg. Infinality):
Install some fonts, for example:
sudo pacman -S ttf-dejavu ttf-liberation noto-fonts
| { | |
| "input": { | |
| "blocklist": [], | |
| "compressor": { | |
| "attack": 20.0, | |
| "boost-amount": 6.0, | |
| "boost-threshold": -72.0, | |
| "hpf-frequency": 10.0, | |
| "hpf-mode": "off", | |
| "input-gain": 0.0, |
Tutorial simplificado para geração de certificados SSL para localhost manualmente.