Systems that has AmbientCapabilities support (usually kernel >= linux4.3)
[Unit]
Description=FRP Server Daemon
AmbientCapabilities support (usually kernel >= linux4.3) [Unit]
Description=FRP Server Daemon
##Installing a custom SSL cert on Unifi Controller
Requirements:
# Install dependencies
sudo apt-get install -y wget apt-transport-https gnupg screen
wget -O - https://packages.adoptium.net/artifactory/api/gpg/key/public | sudo tee /usr/share/keyrings/adoptium.asc
echo "deb [signed-by=/usr/share/keyrings/adoptium.asc] https://packages.adoptium.net/artifactory/deb $(awk -F= '/^VERSION_CODENAME/{print$2}' /etc/os-release) main" | sudo tee /etc/apt/sources.list.d/adoptium.list
sudo apt-get update # update if you haven't already
sudo apt-get install temurin-17-jdk
| #!/bin/sh | |
| # | |
| # processname: nginx | |
| # config: /opt/nginx/conf/nginx.conf | |
| # pidfile: /opt/nginx/logs/nginx.pid | |
| # Source function library. | |
| . /etc/rc.d/init.d/functions | |
| # Source networking configuration. |
(wherever it says url.com, use your server's domain or IP)
Login to new server as root, then add a deploy user
sudo useradd --create-home -s /bin/bash deploy
sudo adduser deploy sudo
sudo passwd deployAnd Update the new password
| class Readline < Formula | |
| # from https://github.com/Homebrew/homebrew-core/pull/36782 | |
| desc "Library for command-line editing" | |
| homepage "https://tiswww.case.edu/php/chet/readline/rltop.html" | |
| url "https://ftp.gnu.org/gnu/readline/readline-7.0.tar.gz" | |
| mirror "https://ftpmirror.gnu.org/readline/readline-7.0.tar.gz" | |
| version "7.0.5" | |
| sha256 "750d437185286f40a369e1e4f4764eda932b9459b5ec9a731628393dd3d32334" | |
| keg_only :versioned_formula |
| #!/bin/bash | |
| # SPDX-License-Identifier: MIT | |
| ## Copyright (C) 2009 Przemyslaw Pawelczyk <przemoc@gmail.com> | |
| ## | |
| ## This script is licensed under the terms of the MIT license. | |
| ## https://opensource.org/licenses/MIT | |
| # | |
| # Lockable script boilerplate | |