View apache-reverse-proxy-docker.conf
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
<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> |
View lightweight-bitwarden.yml
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
version: '3.7' | |
services: | |
bitwarden: | |
image: vaultwarden/server:latest | |
container_name: bitwarden | |
restart: always | |
volumes: | |
- ./bw-data:/data | |
environment: |
View saiyans-actions-workflow-ci-cd-main.yml
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
# This is a basic workflow to help you get started with Actions | |
name: CI/CD | |
# Controls when the action will run. | |
on: | |
push: | |
branches: [main] | |
# Allows you to run this workflow manually from the Actions tab | |
workflow_dispatch: |
View network-manager-wireguard-raspbian.sh
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
cd ~ | |
git clone https://github.com/tomasmetal23/network-manager-wireguard.git | |
cd network-manager-wireguard | |
./autogen.sh --without-libnm-glib | |
./configure --without-libnm-glib \ | |
--prefix=/usr \ | |
--without-libnm-glib \ | |
--sysconfdir=/etc \ | |
--libdir=/usr/lib/arm-linux-gnueabihf \ | |
--libexecdir=/usr/lib/NetworkManager \ |
View kill-miner.sh
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
#!/bin/bash | |
# kinsing deleteing here | |
PID=$(pidof kinsing) | |
echo "$PID" | |
kill -9 $PID | |
# /tmp/kinsing deleteing here (Some times it will run /tmp path) | |
PID=$(pidof /tmp/kinsing) |
View cloudflare-ddns-update.sh
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
#!/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 |
View nextcloud-compose.yml
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
version: '3.8' | |
#volumes: | |
# nextcloud: | |
services: | |
nextcloud: | |
image: nextcloud | |
volumes: |
View bancos
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
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> |
View prometheus-grafana-stack.yml
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
version: '3.7' | |
volumes: | |
prometheus_data: {} | |
grafana_data: {} | |
networks: | |
monitor-net: | |
# driver: overlay | |
name: inbound |
View moodle-compose.yml
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
version: '2' | |
networks: | |
proxy: | |
external: true | |
internal: | |
external: false | |
services: | |
mariadb: |
NewerOlder