Skip to content

Instantly share code, notes, and snippets.

@Lokutos
Lokutos / Win_Server_2022_Evaluation_to_full_version.md
Created August 7, 2024 14:02
Upgrade Windows Server 2022 Evaluation (Eval) to Full Version Standard or Datacenter
@Lokutos
Lokutos / install_unifi_debian_11.txt
Last active April 27, 2023 09:15 — forked from sinofool/install_unifi_8_debian_12.txt
Install Unifi Controller on Debian 11 (Bullseye)
##This installation instructions is based on the debian-11-standard template for LXC CT
#basics
apt update
apt full-upgrade
apt install sudo gnupg
#Java
apt install openjdk-11-jre-headless
## Needs zert available, in this example: letsencrypt
## Configured Hosts in The BIM Server is
## http://bim.domain.tld (main)
## https://bim.doimain.tld
server {
listen 80;
server_name bim.domain.tld;
return 301 https://bim.domain.tld;
}