Skip to content

Instantly share code, notes, and snippets.

View tahmeedabdullah's full-sized avatar

Tahmeed Abdullah tahmeedabdullah

  • Omega Exim Ltd.
View GitHub Profile
@tahmeedabdullah
tahmeedabdullah / Centos7.md
Created October 31, 2023 06:17 — forked from unicornist/Centos7.md
CentOS 7 Server Setup including NginX, NodeJs, MongoDB, Redis, Docker, etc...

Note: For newer versions of NodeJS, Nginx and MongoDB, checkout their websites and update the related parts.

0.Pre-requisites

run all the commands in terminal as the root user (sudo su)

yum update
yum install -y epel-release
@tahmeedabdullah
tahmeedabdullah / Configurations for Laravel app on Kubernetes - Dockerfile
Created December 16, 2022 08:30 — forked from CodingMonkTech/Configurations for Laravel app on Kubernetes - Dockerfile
Deploying laravel on kubernetes cluster - Ready to use configuration Files
FROM php:7.2-fpm
COPY app /var/www/
EXPOSE 9000