1
0
mirror of https://github.com/kataras/iris.git synced 2026-01-08 20:41:57 +00:00
Read HISTORY.md


Former-commit-id: 82df2d266055818ffafe0ba66b58cf4ed9089922
This commit is contained in:
kataras
2017-06-07 07:20:53 +03:00
parent 1bea8f5803
commit 6282a71a6f
29 changed files with 309 additions and 3362 deletions

View File

@@ -12,7 +12,7 @@ It doesn't contains "best ways" neither explains all its features. It's just a s
* [Listening](beginner/listening)
* [Common, with address](beginner/listening/listen-addr/main.go)
* [UNIX socket file](beginner/listening/listen-unix/main.go)
* [TLS](beginner/listening/listen-tls)
* [TLS](beginner/listening/listen-tls/main.go)
* [Letsencrypt (Automatic Certifications)](beginner/listening/listen-letsencrypt/main.go)
* [Custom TCP Listener](beginner/listening/custom-listener/main.go)
* [Configuration](beginner/configuration)
@@ -70,7 +70,7 @@ It doesn't contains "best ways" neither explains all its features. It's just a s
* [Showcase of the `urlpath` tmpl func](intermediate/view/template_html_3/main.go)
* [Showcase of the `url` tmpl func](intermediate/view/template_html_4/main.go)
* [Inject Data Between Handlers](intermediate/view/context-view-data/main.go)
* [Embedding Templates Into App Executable File](intermediate/view/embedding-templates-into-app)
* [Embedding Templates Into App Executable File](intermediate/view/embedding-templates-into-app/main.go)
* [Sessions](intermediate/sessions)
* [Overview](intermediate/sessions/overview/main.go)
* [Encoding & Decoding the Session ID: Secure Cookie](intermediate/sessions/securecookie/main.go)

View File

@@ -12,7 +12,6 @@ func main() {
// Good when you want to modify the whole configuration.
app.Run(iris.Addr(":8080"), iris.WithConfiguration(iris.Configuration{ // default configuration:
DisableBanner: false,
DisableTray: false,
DisableInterruptHandler: false,
DisablePathCorrection: false,
EnablePathEscape: false,

View File

@@ -1,4 +1,3 @@
DisableTray: true
DisablePathCorrection = false
EnablePathEscape = false
FireMethodNotAllowed = true

View File

@@ -1,4 +1,3 @@
DisableTray: true
DisablePathCorrection: false
EnablePathEscape: false
FireMethodNotAllowed: true

View File

@@ -11,9 +11,9 @@ func main() {
// Good when you want to change some of the configuration's field.
// I use that method :)
app.Run(iris.Addr(":8080"), iris.WithoutBanner, iris.WithTray, iris.WithCharset("UTF-8"))
app.Run(iris.Addr(":8080"), iris.WithoutBanner, iris.WithCharset("UTF-8"))
// or before run:
// app.Configure(iris.WithoutBanner, iris.WithTray, iris.WithCharset("UTF-8"))
// app.Configure(iris.WithoutBanner, iris.WithCharset("UTF-8"))
// app.Run(iris.Addr(":8080"))
}

View File

@@ -10,5 +10,5 @@ func main() {
app.Handle("GET", "/", func(ctx context.Context) {
ctx.HTML("<b> Hello world! </b>")
})
app.Run(iris.Addr(":8080"), iris.WithTray)
app.Run(iris.Addr(":8080"))
}

View File

@@ -31,7 +31,7 @@ func main() {
srv.ListenAndServe() // same as app.Run(iris.Addr(":8080"))
// Notes:
// Banne and Tray are not shown at all. Same for the Interrupt Handler, even if app's configuration allows them.
// Banner is not shown at all. Same for the Interrupt Handler, even if app's configuration allows them.
//
// `.Run` is the only one function that cares about those three.