Skip to content

Instantly share code, notes, and snippets.

View ozburn's full-sized avatar

Luciano ozburn

  • 08:13 (UTC -03:00)
View GitHub Profile
@ozburn
ozburn / pritunl-server-custom-ssl_manually
Created July 30, 2022 16:06 — forked from phiberoptick/pritunl-server-custom-ssl_manually
Use custom SSL cert in Pritunl Server Community
Ignore all that craziness below. These can be set from the cli with the "pritunl" command.
The commands below can be used to get/set the values of the cert, key, port and if the :80 -> "app.server_port" redirect is active.
# Get current SSL server cert:
pritunl get app.server_cert
# Get current SSL server key:
pritunl get app.server_key
@ozburn
ozburn / softether.sh
Created October 24, 2018 21:42 — forked from bouroo/softether.sh
Install softether vpn server on ubuntu 16.04+
#!/usr/local/env bash
# Register digitalocean with free credit https://m.do.co/c/4879bb02d178
# Create vps with 5usd price
if [ "$(whoami)" != "root" ]; then
SUDO=sudo
fi
# Update system
${SUDO} apt-get update && ${SUDO} apt-get -y upgrade
@ozburn
ozburn / main.go
Created February 13, 2018 04:28 — forked from SshPwd/main.go
Golang UDP Socket Server
/*
This script creates a simple UDP Server that exports all data received
through the 8080 socket into the console.
Made By: Roberto E. Zubieta
Panama City, Panamá
G+: https://plus.google.com/u/0/105524772414753584405/
*/
package main