Skip to content

Instantly share code, notes, and snippets.

View simon-tannai's full-sized avatar

Simon simon-tannai

View GitHub Profile
@slinkardbrandon
slinkardbrandon / Dockerfile
Last active June 13, 2023 13:00
Serverless in docker example
FROM node:12-alpine
WORKDIR /app
COPY tsconfig.json ./
COPY serverless.yml ./
COPY package.json ./
COPY package-lock.json ./
RUN npm ci
@plentz
plentz / nginx.conf
Last active March 28, 2025 17:48
Best nginx configuration for improved security(and performance)
# to generate your dhparam.pem file, run in the terminal
openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048