Skip to content

Instantly share code, notes, and snippets.

@smirea
smirea / Mozilla Bugzilla Comments Enhancer
Last active December 19, 2015 14:39
adds color coding to diff headers in Bugzilla, enables color coding of code blocks with hotkey navigation and more (check first comment)
// ==UserScript==
// @name Mozilla Bugzilla Comment Enhancer
// @namespace http://code4fun.de
// @description read the name
// @include https://bugzilla.mozilla.org/*
// @grant GM_addStyle
// @version 1
// ==/UserScript==
unsafeWindow.addEventListener ("load", init, false);
@arikfr
arikfr / README.md
Last active April 26, 2024 10:07
Setting up HTTPS with LetsEncrypt for Redash Docker Deployment
  1. Make sure the domain you picked points at the IP of your Redash server.
  2. Switch to the root user (sudo su).
  3. Create a folder named nginx in /opt/redash.
  4. Create in the nginx folder two additional folders: certs and certs-data.
  5. Create the file /opt/redash/nginx/nginx.conf and place the following in it: (replace example.redashapp.com with your domain name)
    upstream redash {
        server redash:5000;
    }