Skip to content

Instantly share code, notes, and snippets.

View greenaussie's full-sized avatar

Richard Green greenaussie

View GitHub Profile
@greenaussie
greenaussie / output.txt
Created February 3, 2020 00:44
radiusd -X
FreeRADIUS Version 3.0.13
Copyright (C) 1999-2017 The FreeRADIUS server project and contributors
There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A
PARTICULAR PURPOSE
You may redistribute copies of FreeRADIUS under the terms of the
GNU General Public License
For more information about these matters, see the file named COPYRIGHT
Starting - reading configuration files ...
including dictionary file /usr/share/freeradius/dictionary
including dictionary file /usr/share/freeradius/dictionary.dhcp
@greenaussie
greenaussie / nginx.conf
Created January 13, 2019 20:58
nginx configuration snippet for ombidb-server behind reverse proxy with path prefix.
location /omnidb/ {
proxy_pass http://localhost:8000/ ;
# add_header Content-Base /omnidb/ ;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection 'upgrade';
proxy_set_header Host $host;
proxy_cache_bypass $http_upgrade;
sub_filter '/wss' '/omnidb/wss';