Skip to content

Instantly share code, notes, and snippets.

View edsonblwolf's full-sized avatar

Edson Wolf edsonblwolf

View GitHub Profile
@renerdias
renerdias / 1-pitr_conf.sh
Last active December 13, 2021 12:03
Postgresql PITR - Backup Incremental
#!/bin/bash
# # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # # #
# #
# Postgresql PITR - Backup Incremental #
# #
# = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = #
# #
# Parte 1 - Configuração #
# #
@tavinus
tavinus / onlyofficeDocsLXCBuster.md
Last active June 26, 2024 11:30
OnlyOffice Docs into a LXC Debian 10
@Koratsuki
Koratsuki / pdc+dlz_con_samba4_y_bind9_en_debian10.md
Last active April 13, 2022 17:07
pdc+dlz_con_samba4_y_bind9_en_debian10.md

Samba4 + DLZ, o Samba4 con delegación de zona

Instalar un PDC con delegación de zona con Samba4 es tan fácil como seguir el siguiente procedimiento:

Nota: Asumimos que usted posee una máquina virtual/contenedor de proxmox actualizado con dist-upgrade, si no es así, por favor hágalo antes de comenzar.

Nota2: En este entorno se utilizará como ejemplo el dominio: "INUTIL.CU", y el password de administración será: "Admin*123"

Nota3: Si usted usa el CT de Debian 10 para Proxmox, active en CT_ID -> Options -> Features -> Nesting. Si no activa la opción Nesting tendrá problemas al iniciar algunos procesos como NTP, entre otros.

@syci
syci / odoo.conf
Created February 19, 2018 21:24
Apache2 Odoo Config
<VirtualHost *:443>
ServerAdmin webmaster@example.com
ServerName odoo.example.com
SSLEngine on
SSLProtocol all -SSLv2 -SSLv3
SSLCipherSuite ALL:!ADH:!EXPORT:!SSLv2:RC4+RSA:+HIGH:+MEDIUM
SSLCertificateFile /etc/ssl/wildcard.example.com/public.crt
SSLCertificateKeyFile /etc/ssl/wildcard.example.com/private.pem
@vch42
vch42 / samba4_install.sh
Last active April 13, 2022 17:08
samba4 install from sources script
#!/bin/bash
# samba4_install.sh
if [ -z $1 ]; then
echo "Missing version number to install...";
echo "eg. ./samba4_install.sh 4.0.0";
echo " ";
exit 1;
fi