Skip to content

Instantly share code, notes, and snippets.

View mrl22's full-sized avatar
πŸ’­
Always coding

Richard Leishman mrl22

πŸ’­
Always coding
View GitHub Profile
@MarcoCestari
MarcoCestari / automatic-ssl.md
Created August 20, 2019 18:59
Automatic SSL - Multi Tenant

Tutorial from: https://www.storyblok.com/tp/automatic-ssl-multi-tenant

Starting a Amazon EC2 instance

First we choose a EC2 instance with Amazon Linux and create it with the default settings.

Amazon Ec2 instance

Copy the IPv4 Public IP from the EC2 instance dashboard and connect to your instance using your private key.

@cagartner
cagartner / deploy.sh
Last active September 4, 2025 05:57
Laravel Push deploy Github actions example
#!/bin/sh
set -e
vendor/bin/phpunit
(git push) || true
git checkout production
git merge master