go run .The waiting room page is served at port 8080 by default
Start by editing constants in main.go
const rate = 500 // admission rate
const redirectURL = "https://example.com" // where admitted users go
const WeirServerDomain = "localhost" // The domain and subdomain of waiting server
const AdmitCookieDomain = "localhost" // The domain and subdomain of main server to redirect too
const isQueryBasedAdmit = false // cookie-based or query-basedMIT
