Skip to main content
Advanced Search
Search Terms
Content Type

Exact Matches
Tag Searches
Date Options
Updated after
Updated before
Created after
Created before

Search Results

290 total results found

Relay IPs & Networks

Hermes SEG Administrator Guide (Legacy) Gateway

In this section, you can add which individual IPs or networks will be allowed to send (relay) email through Hermes SEG. Best security practice is to never allow entire networks to send email through Hermes SEG and instead only allow specific IPs. Add Relay I...

Commandbox Install in Windows

Commandbox

Download CommandBox from https://www.ortussolutions.com/products/commandbox Extract downloaded zip to directory of your choice (Ex: c:\commandbox) Ensure you have Java installed (Amazon Coretto at https://docs.aws.amazon.com/corretto/latest/corre...

Windows

Commandbox Commands

Commandbox

Install Coldbox MVC and Deploy App box mkdir /opt/hermes/webapps/Coldbox-Hermes cd /opt/hermes/webapps/Coldbox-Hermes box install coldbox box coldbox create app HermesSEG Start Server Arguments: Numeric port (port number) String host (bind to a host/ip)...

How to Create VMFS Datastore on Vmware OS bootdrive

Vmware

Normally a vmfs partition is already created by ESXi on the boot drive. You can verify by going logging into the ESX Web GUI and navigating to Storage --> Devices --> Boot disk (Figure 1). Figure 1 Clicking on the drive will show the Partition diagram of t...

HTTP Redirect Using Traefik Reverse Proxy

Traefik

Enter the following code in the data/traefik_conf.yaml: http: routers: svcname: entryPoints: - "http" rule: "Host(`host.domain.tld`)" middlewares: - "svcname-https-redirect" service: svcname svcna...

Sync Time from External Time Source

Active Directory

By default, all machines in the domain will sync time from the domain controller which is the internal time server - if you have more than one DC then time will sync from the DC that holds the PDC emulator FSMO role. To check which DC is PDC emulator in your d...

Deluge Auto Extract Torrents Settings

Cord Cutting

Create a Deluge directory structure as follows: deluge --> incoming (for in-progress downloads) --> complete (for completed downloads) --> torrent (for manual torrents) Under Deluge --> Preferences --> Downloads --> Download to set it to your "incom...

extract.sh

Cord Cutting

#!/bin/bash formats=(zip rar) commands=([zip]="unzip -u" [rar]="unrar -o- e") extraction_subdir='' torrentid=$1 torrentname=$2 torrentpath=$3 log() { logger -t deluge-extractarchives "$@" } log "Torrent complete: $@" cd "${torrentpath}" ...

Determining and Clearing Container Disk Usage in Overlay2

Docker

Show disk usage using docker df: docker system df Should output similar to below: TYPE TOTAL ACTIVE SIZE RECLAIMABLE Images 23 22 11.15GB ...

Install and Configure Fail2Ban on Ubuntu 18.04

Ubuntu

Installing fail2ban can be done with a single command: sudo apt-get install -y fail2ban When that command finishes, fail2ban is ready to go. You'll want to start and enable the service with the commands: sudo systemctl start fail2ban sudo systemctl enable ...

Commandbox Install in Ubuntu

Commandbox

Run the following command in CLI prompt to install Commandbox: /usr/bin/curl -fsSl https://downloads.ortussolutions.com/debs/gpg | sudo apt-key add - && echo "deb https://downloads.ortussolutions.com/debs/noarch /" | sudo tee -a /etc/apt/sources.list.d/comm...

Upgrade php 7.3 Ubuntu 18.04 LTS

Ubuntu

Since Ubuntu 18.04 comes with php 7.2, you must install from the ppa:ondrej repository: sudo add-apt-repository ppa:ondrej/php sudo apt update sudo apt install php7.3 Install all the existing php 7.2 modules on php 7.3: sudo apt install $(apt list --insta...

Restict Access to OnlyOffice Document Server to Nextcloud Users Only

OnlyOffice

ONLYOFFICE Document Server can use a token generated using the JSON Web Tokens (JWT) standard in order to secure the connection and restrict access the the OnlyOffice Document server which by default is accessible to everyone. Edit the /etc/onlyoffice/docum...

Install OnlyOffice Document Server Ubuntu 18.04

OnlyOffice

Add the repository containing the up-to-date Node.js package versions: curl -sL https://deb.nodesource.com/setup_8.x | sudo bash - Install postgresql: apt install postgresql Create Database (Type each command seraparately): /usr/bin/sudo -i -u postgres ps...

Nextcloud 15 on Ubuntu 18.04 LTS Server

Nextcloud

This guide assumes you have a working Ubuntu 18.04 LTS server installation and you have sudo provileges. Credits: Carsten Reiger Become root It's much easier to type in commands without having to worry about typing "sudo" in front of every command and havi...

pfsense 2.4 with Always-On Load Balanced OpenVPN Connections

pfsense

Following this guide will allow you to create always-on load-balanced OpenVPN connections to your favorite VPN provider and force all your Internet traffic through the OpenVPN connections. This guide was developed using Newshosting VPN account. The informatio...

PfSense, HAProxy, SoftEther VPN

pfsense

Introduction This guide was written in order to assist in setting up HAProxy in PfSense in order to route SSL (443) traffic to either a SoftEther SSL VPN server or a webserver listening on port 443 based on SNI. In actuality, any SSL VPN server will suffice, ...