Skip to content

Instantly share code, notes, and snippets.

View tomasmetal23's full-sized avatar
🏠
Working from home

Tomás A. Márquez L. tomasmetal23

🏠
Working from home
View GitHub Profile
@tomasmetal23
tomasmetal23 / apache-reverse-proxy-docker.conf
Created March 23, 2023 13:56 — forked from felipefernandes/apache-reverse-proxy-docker.conf
Apache Reverse Proxy Setup for Docker Containers
<VirtualHost *:80>
ProxyPreserveHost On
ProxyRequests Off
ServerName <<<SITE NAME>>>.com
ProxyPass / http://0.0.0.0:8080/ # Server IP + the exposed port of docker container
ProxyPassReverse / http://0.0.0.0:8080/ # Server IP + the exposed port of docker container
</VirtualHost>
@tomasmetal23
tomasmetal23 / cloudflare-ddns-update.sh
Created February 16, 2021 01:33 — forked from Tras2/cloudflare-ddns-update.sh
A bash script to update a Cloudflare DNS A record with the external IP of the source machine
#!/bin/bash
# A bash script to update a Cloudflare DNS A record with the external IP of the source machine
# Used to provide DDNS service for my home
# Needs the DNS record pre-creating on Cloudflare
# Proxy - uncomment and provide details if using a proxy
#export https_proxy=http://<proxyuser>:<proxypassword>@<proxyip>:<proxyport>
# Cloudflare zone is the zone which holds the record
@tomasmetal23
tomasmetal23 / bancos
Created June 22, 2020 21:21 — forked from xombra/bancos
Codigo y Bancos correspondientes de Venezuela
Banco:
<select name="banco">
<option value=""></option>
<option value="0156">100%BANCO</option>
<option value="0196">ABN AMRO BANK</option>
<option value="0172">BANCAMIGA BANCO MICROFINANCIERO, C.A.</option>
<option value="0171">BANCO ACTIVO BANCO COMERCIAL, C.A.</option>
<option value="0166">BANCO AGRICOLA</option>
<option value="0175">BANCO BICENTENARIO</option>
<option value="0128">BANCO CARONI, C.A. BANCO UNIVERSAL</option>
cd ~
wget https://repo.saiyans.com.ve/openresolv-3.9.2.tar.xz
tar xf openresolv-3.9.2.tar.xz
cd openresolv-3.9.2
./configure
make
make install
cd ..
rm -rf openresolv-3.9.2*