Skip to content

Instantly share code, notes, and snippets.

View Adrianhein's full-sized avatar

adrianhein Adrianhein

  • Bangkok, Thailand.
  • 03:42 (UTC +07:00)
View GitHub Profile
@Adrianhein
Adrianhein / install-vmware-player-with-vagrant.ps1
Last active October 8, 2023 11:38 — forked from 1eedaegon/install-vmware-player-with-vagrant.ps1
Install vagrant with vmware for windows 11
# 1. Download and install go
https://golang.org/doc/install
# 2. Download and install VMware workstation player
https://www.vmware.com/products/workstation-player.html
# 3. Download and install vagrant
https://www.vagrantup.com/downloads
# 4. Download vagrant vmware utility
@Adrianhein
Adrianhein / Initial configurations.md
Created February 6, 2023 16:28 — forked from identor/Initial configurations.md
Git deployment in Centos 7

General

Created a user named git, this shall function as the user where git repos are put into. The git repos in the home directory of the user are supposed to be bare repositories. To initialize a repository issue the command:

git init --bare <site-name>.git

Create new site script for host

#!/bin/bash
@Adrianhein
Adrianhein / openssl_commands.md
Created January 20, 2023 01:55 — forked from Hakky54/openssl_commands.md
Some list of openssl commands for check and verify your keys

OpenSSL 🔐

Install

Install the OpenSSL on Debian based systems

sudo apt-get install openssl