Skip to content

Instantly share code, notes, and snippets.

@andre-vidal
andre-vidal / ngrok.yaml
Last active January 20, 2024 01:27
How to configure a simple http ngrok tunnel
# Default Location: C:/Users/<username>/AppData/Local/ngrok
version: "2" # Specifies the version of the config file to use.
authtoken: <your-auth-token-here> # Configured in your ngrok dashboard
region: us # Choose the region where the ngrok agent will connect to host its tunnels.
tunnels:
tunnelname:
proto: http # Protocol name
schemes:
- https # Bind to a specific scheme (http or https)
@andre-vidal
andre-vidal / docker-compose.yml
Created September 1, 2022 20:59
Docker compose MSSQL Database
version: '3.4'
services:
ms-sql-server:
image: mcr.microsoft.com/mssql/server:2017-latest-ubuntu
environment:
ACCEPT_EULA: "Y"
SA_PASSWORD: "Passw[123"
MSSQL_PID: Express
ports:
- "1433:1433"