Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
张磊
/
FileStorageBeego
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
bf9de3bc
authored
2013-07-03 15:29:54 +0800
by
astaxie
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
add HttpServerTimeOut setting
1 parent
189df128
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
1 deletions
beego.go
config.go
beego.go
View file @
bf9de3b
...
...
@@ -10,6 +10,7 @@ import (
"os"
"path"
"runtime"
"time"
)
const
VERSION
=
"0.7.0"
...
...
@@ -41,6 +42,7 @@ var (
EnableGzip
bool
// enable gzip
DirectoryIndex
bool
//ebable DirectoryIndex default is false
EnbaleHotUpdate
bool
//enable HotUpdate default is false
HttpServerTimeOut
int64
)
func
init
()
{
...
...
@@ -67,6 +69,7 @@ func init() {
EnableGzip
=
false
StaticDir
[
"/static"
]
=
"static"
AppConfigPath
=
path
.
Join
(
AppPath
,
"conf"
,
"app.conf"
)
HttpServerTimeOut
=
0
ParseConfig
()
}
...
...
@@ -106,7 +109,13 @@ func (app *App) Run() {
theStoppable
.
wg
.
Wait
()
CloseSelf
()
}
else
{
err
=
http
.
ListenAndServe
(
addr
,
app
.
Handlers
)
s
:=
&
http
.
Server
{
Addr
:
addr
,
Handler
:
app
.
Handlers
,
ReadTimeout
:
time
.
Duration
(
HttpServerTimeOut
)
*
time
.
Second
,
WriteTimeout
:
time
.
Duration
(
HttpServerTimeOut
)
*
time
.
Second
,
}
err
=
s
.
ListenAndServe
()
}
}
...
...
config.go
View file @
bf9de3b
...
...
@@ -180,6 +180,9 @@ func ParseConfig() (err error) {
if
hotupdate
,
err
:=
AppConfig
.
Bool
(
"hotupdate"
);
err
==
nil
{
EnbaleHotUpdate
=
hotupdate
}
if
timeout
,
err
:=
AppConfig
.
Int64
(
"httpservertimeout"
);
err
==
nil
{
HttpServerTimeOut
=
timeout
}
}
return
nil
}
...
...
Write
Preview
Styling with
Markdown
is supported
Attach a file
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to post a comment