mirror of
https://github.com/astaxie/beego.git
synced 2024-11-04 21:30:55 +00:00
716962672f
add config ListenTCP4 when user want to listen on the TCP4, because now almost use the ipv4. but default lister on the ipv6
126 lines
3.1 KiB
Go
126 lines
3.1 KiB
Go
// Copyright 2014 beego Author. All Rights Reserved.
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
package beego
|
|
|
|
import (
|
|
"fmt"
|
|
"net"
|
|
"net/http"
|
|
"net/http/fcgi"
|
|
"time"
|
|
)
|
|
|
|
// App defines beego application with a new PatternServeMux.
|
|
type App struct {
|
|
Handlers *ControllerRegistor
|
|
Server *http.Server
|
|
}
|
|
|
|
// NewApp returns a new beego application.
|
|
func NewApp() *App {
|
|
cr := NewControllerRegister()
|
|
app := &App{Handlers: cr, Server: &http.Server{}}
|
|
return app
|
|
}
|
|
|
|
// Run beego application.
|
|
func (app *App) Run() {
|
|
addr := HttpAddr
|
|
|
|
if HttpPort != 0 {
|
|
addr = fmt.Sprintf("%s:%d", HttpAddr, HttpPort)
|
|
}
|
|
|
|
var (
|
|
err error
|
|
l net.Listener
|
|
)
|
|
endRunning := make(chan bool, 1)
|
|
|
|
if UseFcgi {
|
|
if UseStdIo {
|
|
err = fcgi.Serve(nil, app.Handlers) // standard I/O
|
|
if err == nil {
|
|
BeeLogger.Info("Use FCGI via standard I/O")
|
|
} else {
|
|
BeeLogger.Info("Cannot use FCGI via standard I/O", err)
|
|
}
|
|
} else {
|
|
if HttpPort == 0 {
|
|
l, err = net.Listen("unix", addr)
|
|
} else {
|
|
l, err = net.Listen("tcp", addr)
|
|
}
|
|
if err != nil {
|
|
BeeLogger.Critical("Listen: ", err)
|
|
}
|
|
err = fcgi.Serve(l, app.Handlers)
|
|
}
|
|
} else {
|
|
app.Server.Addr = addr
|
|
app.Server.Handler = app.Handlers
|
|
app.Server.ReadTimeout = time.Duration(HttpServerTimeOut) * time.Second
|
|
app.Server.WriteTimeout = time.Duration(HttpServerTimeOut) * time.Second
|
|
|
|
if EnableHttpTLS {
|
|
go func() {
|
|
time.Sleep(20 * time.Microsecond)
|
|
if HttpsPort != 0 {
|
|
app.Server.Addr = fmt.Sprintf("%s:%d", HttpAddr, HttpsPort)
|
|
}
|
|
BeeLogger.Info("https server Running on %s", app.Server.Addr)
|
|
err := app.Server.ListenAndServeTLS(HttpCertFile, HttpKeyFile)
|
|
if err != nil {
|
|
BeeLogger.Critical("ListenAndServeTLS: ", err)
|
|
time.Sleep(100 * time.Microsecond)
|
|
endRunning <- true
|
|
}
|
|
}()
|
|
}
|
|
|
|
if EnableHttpListen {
|
|
go func() {
|
|
app.Server.Addr = addr
|
|
BeeLogger.Info("http server Running on %s", app.Server.Addr)
|
|
if ListenTCP4 && HttpAddr == "" {
|
|
ln, err := net.Listen("tcp4", app.Server.Addr)
|
|
if err != nil {
|
|
BeeLogger.Critical("ListenAndServe: ", err)
|
|
time.Sleep(100 * time.Microsecond)
|
|
endRunning <- true
|
|
return
|
|
}
|
|
err = app.Server.Serve(ln)
|
|
if err != nil {
|
|
BeeLogger.Critical("ListenAndServe: ", err)
|
|
time.Sleep(100 * time.Microsecond)
|
|
endRunning <- true
|
|
return
|
|
}
|
|
} else {
|
|
err := app.Server.ListenAndServe()
|
|
if err != nil {
|
|
BeeLogger.Critical("ListenAndServe: ", err)
|
|
time.Sleep(100 * time.Microsecond)
|
|
endRunning <- true
|
|
}
|
|
}
|
|
}()
|
|
}
|
|
}
|
|
|
|
<-endRunning
|
|
}
|