Allow all websocket origins in development mode
This commit is contained in:
parent
22d8b8b363
commit
1a7360a573
1 changed files with 6 additions and 0 deletions
|
@ -30,6 +30,12 @@ func Run() {
|
||||||
sessions = newSessionStore()
|
sessions = newSessionStore()
|
||||||
channelStore = storage.NewChannelStore()
|
channelStore = storage.NewChannelStore()
|
||||||
|
|
||||||
|
if viper.GetBool("dev") {
|
||||||
|
upgrader.CheckOrigin = func(r *http.Request) bool {
|
||||||
|
return true
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
reconnectIRC()
|
reconnectIRC()
|
||||||
initAuth()
|
initAuth()
|
||||||
initFileServer()
|
initFileServer()
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue