This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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: |