Skip to content

Instantly share code, notes, and snippets.

@itgelo
itgelo / nginx.conf
Created March 25, 2021 03:05 — forked from jrom/nginx.conf
nginx hack for multiple conditions
if ($request_uri = /) {
set $test A;
}
if ($host ~* teambox.com) {
set $test "${test}B";
}
if ($http_cookie !~* "auth_token") {
set $test "${test}C";
@itgelo
itgelo / main.go
Created May 2, 2025 08:47
Server-Sent Events with Fiber
package main
import (
"bufio"
"bytes"
"encoding/json"
"fmt"
"log"
"math/rand"
"runtime"