Skip to content

Instantly share code, notes, and snippets.

anonymous
anonymous / dnscrypt-artful.sh
Created November 28, 2017 13:46
#!/bin/bash
apt-get install dnscrypt-proxy
sed -i 's/fvz-anyone/cisco/g' /etc/dnscrypt-proxy/dnscrypt-proxy.conf
grep '127' /lib/systemd/system/dnscrypt-proxy.socket
sed -i 's/127.0.2.1/127.0.0.1/g' /lib/systemd/system/dnscrypt-proxy.socket
grep '127' /lib/systemd/system/dsncrypt-proxy.socket
systemctl daemon-reload
systemctl stop dnscrypt-proxy.socket
systemctl start dnscrypt-proxy
systemctl disable systemd-resolved.service
@changeme
changeme / guacamole.conf
Created January 5, 2017 04:35
nginx guacamole reverse proxy let'sencrypt.
server {
listen 443 ssl;
server_name sub.domain.com;
ssl on;
ssl_certificate /etc/letsencrypt/live/sub.domain.com/fullchain.pem;
ssl_certificate_key /etc/letsencrypt/live/sub.domain.com/privkey.pem;
location / {
proxy_buffering off;
proxy_pass http://[IPADDRESS]:[PORT]/guacamole/;
proxy_http_version 1.1;
@dypsilon
dypsilon / frontendDevlopmentBookmarks.md
Last active May 7, 2024 01:27
A badass list of frontend development resources I collected over time.