Advanced Search
Search Results
79 total results found
Forward Proxy with proxy_pass Module
Step 1: Build Nginx with proxy_pass module from source code sudo -i mkdir /nginx && cd /nginx yum install -y gcc pcre-devel openssl-devel zlib-devel patch wget https://github.com/chobits/ngx_http_proxy_connect_module/archive/refs/tags/v0.0.5.tar.gz wget ...
Reverse Proxy
Basic server { listen 80 ssl; server_name TEST.LAB.LOCAL; location / { proxy_pass http://localhost:8080/examples; } } Set Nginx proxy header values server { listen 80; server_name TEST.LAB.LOCAL; location / { proxy_pa...
Heimdall | An Application dashboard and launcher
Heimdall | An Application dashboard and launcher --- version: "2.1" services: heimdall: image: lscr.io/linuxserver/heimdall:latest container_name: heimdall environment: - PUID=1000 - PGID=1000 - TZ=Asia/Singapore ...
FileRun | Selfhosted File Sync and Share
FileRun - Selfhosted File Sync and Share version: '2' services: db: image: mariadb:10.1 environment: MYSQL_ROOT_PASSWORD: [yourdbrootpassword] MYSQL_USER: [yourdbusername] MYSQL_PASSWORD: [yourdbpassword] MYSQL_DATABA...
Pydio | Enterprise File Sharing & Sync Platform
Pydio | Enterprise File Sharing & Sync Platform version: '3.7' services: cells: image: pydio/cells:latest restart: unless-stopped ports: ["8080:8080"] volumes: - cellsdir:/var/cells - data:/var/cells/data mysql: i...
BookStack | Simple & Free Wiki Software
BookStack | Simple & Free Wiki Software --- version: "2" services: bookstack: image: lscr.io/linuxserver/bookstack container_name: bookstack environment: - PUID=1000 - PGID=1000 - APP_URL=https://bookstack.example.com ...
Snippet-box | Home Lab Dashboard for Code
Snippet-box | Home Lab Dashboard for Code! version: '3' services: snippet-box: image: pawelmalak/snippet-box container_name: snippet-box volumes: - ./data:/app/data ports: - 5000:5000 restart: unless-stopped
Nextcloud All-in-One
Nextcloud All-in-One version: "3.8" volumes: nextcloud_aio_mastercontainer: name: nextcloud_aio_mastercontainer # This line is not allowed to be changed services: nextcloud: image: nextcloud/all-in-one:latest restart: always co...
IT-Tools | Useful tools for developer and people working in IT
IT-Tools | Useful tools for developer and people working in IT version: '3.3' services: it-tools: container_name: it-tools ports: - '8080:80' image: 'corentinth/it-tools:latest'
Snibox | Self-hosted snippet manager
Snibox | Self-hosted snippet manager version: '3' services: frontend: image: snibox/nginx-puma:1.15.9 ports: - "9000:80" volumes: - static-files:/var/www/html depends_on: - backend backend: image: snibox/sn...
chrony | Set up NTP Server and Client
NTP Server Step 1: Install Chrony NTP package yum install chrony Step 2: Enable Chrony to start after boot: systemctl enable chronyd Step 3: Set Chrony to act as an NTP server for a local network To turn Chrony into an NTP server, add the following line ...
timedatectl | Change Date/Time in RHEL
Show Status To display status timedatectl Disable/Enable NTP Firstly, temporarily disable the NTP service, if active. timedatectl set-ntp no To enable. timedatectl set-ntp yes Change Time We must adhere to the following syntax rule to change the c...
Reset GPO
To clear Local GPO Delete everything inside the GPO folder RD /S /Q "%WinDir%\System32\GroupPolicyUsers" && RD /S /Q "%WinDir%\System32\GroupPolicy" To clear Domain GPO Make a backup of the GPO in the domain first. To reset the Default Domain Controller P...
tar | File Archive Commands
TAR (No Compression) Create TAR Archive Create a TARarchive from a directory. "-cf" is to create and append. No compression. tar -cf <filename> <dir> Extract TAR Archive Extract the TAR file to the current directory. tar -xf <filename> View TAR Archive ...
scp | Push/Pull Files/Directory
To copy files/folders from one system to another system scp <source> <dest> Pull file.txt to home directory scp username@host:/file.txt ~/ Push file.txt to other system home directory scp ~/file.txt username@host:~/file.txt
rsync | Synchronise between systems
Sync rsync command rsync <source> <dest> Local Between the same system between directory rsync -av /var/log /tmp Remote Between the local directory and the remote directory rsync -av /tmp username@remote_host:/tmp Compare Compare the content of th...
LVM | Create/Extend
Create LVM Steps In sequence, Prepare the physical storage Create the physical volume Create the volume group from the physical volume Create logical volume from the volume group Make an XFS File System from the logical volume Mount the XFS FS S...
Set Time Zone via CMD
Using Command Prompt Get current time zone. tzutil /g Get all the time zone list in the system. Take note of the description of your desired time zone. tzutil /l Set time zone tzutil /s "Singapore Standard Time"
j2parser | Jinja2 Parser
--- version: "2" services: j2parser: image: sahilsk/j2parser container_name: j2parser ports: - 5000:5000 restart: unless-stopped
RHEL | Mounting ISO and Setting as Local Repo
This document provides a guide on mounting the RHEL ISO and setting it up as a local repo. This will enable RedHat Linux to install and update RPM packages. This guide may work on another type of Linux as it is based on editing the repo file and mounting ISO ...