Skip to content

Instantly share code, notes, and snippets.

View futuri's full-sized avatar
:octocat:

Heber Futuri futuri

:octocat:
View GitHub Profile
@futuri
futuri / nginx.conf
Created June 28, 2020 10:58 — forked from mfuzailzubari/nginx.conf
NGINX RTMP Configurations
worker_processes auto;
events {
# Allows up to 1024 connections, can be adjusted
worker_connections 1024;
}
# RTMP configuration
rtmp {
server {
listen 1935; # Listen on standard RTMP port
@futuri
futuri / dev.conf
Last active November 29, 2023 03:19 — forked from fnando/dev.conf
Nginx configuration for SSH tunnel
upstream tunnel {
server 127.0.0.1:3000;
}
server {
listen 80;
server_name tunnel.bigsigmadevelopment.com;
location / {
proxy_set_header X-Real-IP $remote_addr;
@futuri
futuri / pdftk.bat
Last active September 20, 2024 21:55 — forked from jgdoncel/pdftk.bat
PDFTK - Comandos útiles
REM Para unir dos documentos diferentes podemos ejecutar lo siguiente desde la consola:
pdftk archivo1.pdf archivo2.pdf cat output salida.pdf
REM Tambien podemos unirlos utilizando etiquetas:
pdftk A=archivo1.pdf B=archivo2.pdf cat A B output salida.pdf
REM Y por supuesto podemos usar comodines:
pdftk *.pdf cat output salida.pdf
REM Para separar páginas de varios documentos y crear un documento nuevo con estas hacemos lo siguiente: