Please note - you may want to validate whether the options used affect your setup.
Create a new service file.
nano /etc/systemd/system/disable-offloading.service
jellyfin, authentik, ldap authentication, single sign-on (sso), bindings, docker containers
Resources:
These are NOT product / license keys that are valid for Windows activation.
These keys only select the edition of Windows to install during setup, but they do not activate or license the installation.
Contains some notes about using a Supermicro AOC-STGF-i2S - User's Guide
Initial configuration was:
Go to OpenWRT release page, select the latest release stable release, then targets -> x86 -> 64. Right-click generic-ext4-combined.img.gz (not the "efi"!) and copy the link.
On the Proxmox host, download the archive and unpack it:
wget *paste link here*
gunzip openwrt-*.img.gz
| Install WireGuard via whatever package manager you use. For me, I use apt. | |
| $ sudo add-apt-repository ppa:wireguard/wireguard | |
| $ sudo apt-get update | |
| $ sudo apt-get install wireguard | |
| MacOS | |
| $ brew install wireguard-tools | |
| Generate key your key pairs. The key pairs are just that, key pairs. They can be |
| # Scanner i2c en MicroPython | MicroPython i2c scanner | |
| # Renvoi l'adresse en decimal et hexa de chaque device connecte sur le bus i2c | |
| # Return decimal and hexa adress of each i2c device | |
| # https://projetsdiy.fr - https://diyprojects.io (dec. 2017) | |
| import machine | |
| i2c = machine.I2C(scl=machine.Pin(5), sda=machine.Pin(4)) | |
| print('Scan i2c bus...') | |
| devices = i2c.scan() |
| listen l1 | |
| bind 0.0.0.0:443 | |
| mode tcp | |
| timeout connect 4000 | |
| timeout client 180000 | |
| timeout server 180000 | |
| server srv1 host.example.com:9443 |
| # This example assumes the NGINX proxy is on the same host as the Plex Media Server. | |
| # To configure Plex Media Server to serve requests without requiring authentication, | |
| # ensure that your LAN subnet is correctly added to the advanced server setting called | |
| # "List of IP addresses and networks that are allowed without auth". Example: | |
| # 192.168.0.1/24 | |
| upstream plex-upstream { | |
| server 127.0.0.1:32400; | |
| } |