Skip to content

Instantly share code, notes, and snippets.

View IITuxtmuxII's full-sized avatar
🐢

Bob rockige IITuxtmuxII

🐢
View GitHub Profile
@IITuxtmuxII
IITuxtmuxII / letsencrypt-guide-nginx-acme.sh.md
Created September 27, 2023 19:35 — forked from dorelljames/letsencrypt-guide-nginx-acme.sh.md
SSL via Let's Encrypt (nginx server)

Nginx SSL via Let's Encrypt and acme.sh

This guide is intended to walk you through installation of a valid SSL on your server for your site at example.com. This example is using root user, you may need to use sudo if you encounter problems such as write permissions.

Pre-requisites

  • Install acme.sh on your server. This will create a acme.sh folder in your home directory and more importantly create an everyday cron job to check and renew certificates if needed.
  • Install nginx server (different per distibution so just make sure you have it up and running)
@IITuxtmuxII
IITuxtmuxII / vidstab_ffmpeg.md
Created September 3, 2022 13:00 — forked from hlorand/vidstab_ffmpeg.md
Video stabilization using VidStab and FFMPEG

Video stabilization using VidStab and FFMPEG

** Step 1 **

Install ffmpeg with the vidstab plugin.

@IITuxtmuxII
IITuxtmuxII / command.txt
Created October 2, 2021 12:47 — forked from nrk/command.txt
Using ffprobe to get info from a file in a nice JSON format
ffprobe -v quiet -print_format json -show_format -show_streams "lolwut.mp4" > "lolwut.mp4.json"