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
#!/usr/bin/env python | |
import xml.etree.ElementTree as ET | |
import requests | |
url = 'https://<ZIMBRA_SERVER_URL>:7071/service/admin/soap' | |
headers = { 'Content-Type': 'application/soap+xml' } | |
# Get the credentials through zmlocalconfig | |
# zmlocalconfig zimbra_user |
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 | |
set -e | |
############################################################################### | |
# This script tries to repair a Time Machine *network* backup (i.e. an APF | |
# share containing a sparsebundle) that is shared over a network using e.g. an | |
# Apple TimeCapsule, a NAS, Raspberry PI, ... | |
# The script must be run on the computer that created the backup | |
# |
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
# allow that much active connections | |
net.core.somaxconn = 256000 | |
# do less swap but not disable it | |
vm.swappiness = 1 | |
# allow application request allocation of virtual memory | |
# more than real RAM size (or OpenVZ/LXC limits) | |
vm.overcommit_memory = 1 |
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
# to generate your dhparam.pem file, run in the terminal | |
openssl dhparam -out /etc/nginx/ssl/dhparam.pem 2048 |