├── README.md ├── bashrc ├── bind ├── named.conf └── named.d │ ├── adblock.home │ ├── pi.home │ ├── printer.home │ ├── router.home │ ├── spotify.home │ ├── torrent.home │ ├── update-zonefile.py │ └── wx.home ├── crontab ├── ddclient └── ddclient.conf ├── installed_packages.txt ├── iptables ├── empty.rules └── iptables.rules ├── irssi ├── chaves.theme ├── config └── scripts │ └── autorun │ └── iNotify.pl ├── nginx └── nginx.conf ├── openvpn ├── client │ └── client.conf ├── easy-rsa │ ├── client.conf │ ├── keys │ │ └── ta.key │ ├── pki │ │ └── .rnd │ └── vars ├── make_config.sh ├── revoke └── server │ ├── ipp.txt │ └── openvpn.conf └── vimrc /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reynico/my-raspberry/HEAD/README.md -------------------------------------------------------------------------------- /bashrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reynico/my-raspberry/HEAD/bashrc -------------------------------------------------------------------------------- /bind/named.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reynico/my-raspberry/HEAD/bind/named.conf -------------------------------------------------------------------------------- /bind/named.d/adblock.home: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reynico/my-raspberry/HEAD/bind/named.d/adblock.home -------------------------------------------------------------------------------- /bind/named.d/pi.home: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reynico/my-raspberry/HEAD/bind/named.d/pi.home -------------------------------------------------------------------------------- /bind/named.d/printer.home: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reynico/my-raspberry/HEAD/bind/named.d/printer.home -------------------------------------------------------------------------------- /bind/named.d/router.home: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reynico/my-raspberry/HEAD/bind/named.d/router.home -------------------------------------------------------------------------------- /bind/named.d/spotify.home: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reynico/my-raspberry/HEAD/bind/named.d/spotify.home -------------------------------------------------------------------------------- /bind/named.d/torrent.home: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reynico/my-raspberry/HEAD/bind/named.d/torrent.home -------------------------------------------------------------------------------- /bind/named.d/update-zonefile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reynico/my-raspberry/HEAD/bind/named.d/update-zonefile.py -------------------------------------------------------------------------------- /bind/named.d/wx.home: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reynico/my-raspberry/HEAD/bind/named.d/wx.home -------------------------------------------------------------------------------- /crontab: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reynico/my-raspberry/HEAD/crontab -------------------------------------------------------------------------------- /ddclient/ddclient.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reynico/my-raspberry/HEAD/ddclient/ddclient.conf -------------------------------------------------------------------------------- /installed_packages.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reynico/my-raspberry/HEAD/installed_packages.txt -------------------------------------------------------------------------------- /iptables/empty.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reynico/my-raspberry/HEAD/iptables/empty.rules -------------------------------------------------------------------------------- /iptables/iptables.rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reynico/my-raspberry/HEAD/iptables/iptables.rules -------------------------------------------------------------------------------- /irssi/chaves.theme: -------------------------------------------------------------------------------- 1 | irssi-themes/chaves.theme -------------------------------------------------------------------------------- /irssi/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reynico/my-raspberry/HEAD/irssi/config -------------------------------------------------------------------------------- /irssi/scripts/autorun/iNotify.pl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reynico/my-raspberry/HEAD/irssi/scripts/autorun/iNotify.pl -------------------------------------------------------------------------------- /nginx/nginx.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reynico/my-raspberry/HEAD/nginx/nginx.conf -------------------------------------------------------------------------------- /openvpn/client/client.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reynico/my-raspberry/HEAD/openvpn/client/client.conf -------------------------------------------------------------------------------- /openvpn/easy-rsa/client.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reynico/my-raspberry/HEAD/openvpn/easy-rsa/client.conf -------------------------------------------------------------------------------- /openvpn/easy-rsa/keys/ta.key: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openvpn/easy-rsa/pki/.rnd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reynico/my-raspberry/HEAD/openvpn/easy-rsa/pki/.rnd -------------------------------------------------------------------------------- /openvpn/easy-rsa/vars: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reynico/my-raspberry/HEAD/openvpn/easy-rsa/vars -------------------------------------------------------------------------------- /openvpn/make_config.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reynico/my-raspberry/HEAD/openvpn/make_config.sh -------------------------------------------------------------------------------- /openvpn/revoke: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reynico/my-raspberry/HEAD/openvpn/revoke -------------------------------------------------------------------------------- /openvpn/server/ipp.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /openvpn/server/openvpn.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reynico/my-raspberry/HEAD/openvpn/server/openvpn.conf -------------------------------------------------------------------------------- /vimrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reynico/my-raspberry/HEAD/vimrc --------------------------------------------------------------------------------