Skip to content

Instantly share code, notes, and snippets.

View Max-im's full-sized avatar
💭
Any application that can be written in js will eventually be written in js

Maksym Pozhydaiev Max-im

💭
Any application that can be written in js will eventually be written in js
View GitHub Profile
@Max-im
Max-im / Completely Uninstall LAMP Ubuntu
Created July 12, 2023 21:51 — forked from UbuntuEvangelist/Completely Uninstall LAMP Ubuntu
Completely Uninstall LAMP Ubuntu 20.04 LTS
Contact Me For Your Projects :)
Telegram: https://t.me/LinuxGun
WhatsApp: https://wa.link/5ow7oz
#!/bin/bash
# This will remove Apache
sudo service apache2 stop
sudo apt-get purge apache2 apache2-utils apache2.2-bin
@Max-im
Max-im / gitCheatSheet.md
Last active June 15, 2023 15:42
Common commands for git

Git Cheat Sheet

Common

Instalation

git init
@Max-im
Max-im / nodejs_production_launch.md
Last active March 16, 2023 09:35 — forked from bradtraversy/node_nginx_ssl.md
Node app deploy with nginx & SSL

Node.js Deployment

Steps to deploy a Node.js app to AWS EC2 using PM2, NGINX as a reverse proxy and an SSL from LetsEncrypt

1. Sign in for AWS

Create a new EC2 instance or use an existing one. Connect to the instance via SSH.

2. Install Node/NPM