Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
caddy
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
caddy
Commits
3856ad03
Commit
3856ad03
authored
Jul 19, 2019
by
Christian Muehlhaeuser
Committed by
Matt Holt
Jul 18, 2019
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Used goimports to fix import order (#2682)
Keeps the list sorted and prevents future merge conflicts.
parent
d411b7d0
Changes
13
Hide whitespace changes
Inline
Side-by-side
Showing
13 changed files
with
14 additions
and
14 deletions
+14
-14
caddy/caddymain/run.go
caddy/caddymain/run.go
+2
-2
caddyhttp/basicauth/basicauth.go
caddyhttp/basicauth/basicauth.go
+1
-1
caddyhttp/browse/browse.go
caddyhttp/browse/browse.go
+1
-1
caddyhttp/httpserver/logger.go
caddyhttp/httpserver/logger.go
+1
-1
caddyhttp/httpserver/server.go
caddyhttp/httpserver/server.go
+1
-1
caddyhttp/proxy/reverseproxy.go
caddyhttp/proxy/reverseproxy.go
+1
-1
caddyhttp/requestid/requestid.go
caddyhttp/requestid/requestid.go
+1
-1
caddyhttp/websocket/websocket.go
caddyhttp/websocket/websocket.go
+1
-1
caddytls/config.go
caddytls/config.go
+1
-1
caddytls/setup_test.go
caddytls/setup_test.go
+1
-1
caddytls/tls.go
caddytls/tls.go
+1
-1
onevent/hook/hook_test.go
onevent/hook/hook_test.go
+1
-1
onevent/on.go
onevent/on.go
+1
-1
No files found.
caddy/caddymain/run.go
View file @
3856ad03
...
...
@@ -29,12 +29,12 @@ import (
"strconv"
"strings"
"github.com/google/uuid"
"github.com/klauspost/cpuid"
"github.com/caddyserver/caddy"
"github.com/caddyserver/caddy/caddyfile"
"github.com/caddyserver/caddy/caddytls"
"github.com/caddyserver/caddy/telemetry"
"github.com/google/uuid"
"github.com/klauspost/cpuid"
"github.com/mholt/certmagic"
lumberjack
"gopkg.in/natefinch/lumberjack.v2"
...
...
caddyhttp/basicauth/basicauth.go
View file @
3856ad03
...
...
@@ -33,8 +33,8 @@ import (
"strings"
"sync"
"github.com/jimstudt/http-authentication/basic"
"github.com/caddyserver/caddy/caddyhttp/httpserver"
"github.com/jimstudt/http-authentication/basic"
)
// BasicAuth is middleware to protect resources with a username and password.
...
...
caddyhttp/browse/browse.go
View file @
3856ad03
...
...
@@ -29,9 +29,9 @@ import (
"text/template"
"time"
"github.com/dustin/go-humanize"
"github.com/caddyserver/caddy/caddyhttp/httpserver"
"github.com/caddyserver/caddy/caddyhttp/staticfiles"
"github.com/dustin/go-humanize"
)
const
(
...
...
caddyhttp/httpserver/logger.go
View file @
3856ad03
...
...
@@ -23,8 +23,8 @@ import (
"strings"
"sync"
gsyslog
"github.com/hashicorp/go-syslog"
"github.com/caddyserver/caddy"
gsyslog
"github.com/hashicorp/go-syslog"
)
var
remoteSyslogPrefixes
=
map
[
string
]
string
{
...
...
caddyhttp/httpserver/server.go
View file @
3856ad03
...
...
@@ -31,11 +31,11 @@ import (
"strings"
"time"
"github.com/lucas-clemente/quic-go/h2quic"
"github.com/caddyserver/caddy"
"github.com/caddyserver/caddy/caddyhttp/staticfiles"
"github.com/caddyserver/caddy/caddytls"
"github.com/caddyserver/caddy/telemetry"
"github.com/lucas-clemente/quic-go/h2quic"
)
// Server is the HTTP server implementation.
...
...
caddyhttp/proxy/reverseproxy.go
View file @
3856ad03
...
...
@@ -41,9 +41,9 @@ import (
"golang.org/x/net/http2"
"github.com/caddyserver/caddy/caddyhttp/httpserver"
"github.com/lucas-clemente/quic-go"
"github.com/lucas-clemente/quic-go/h2quic"
"github.com/caddyserver/caddy/caddyhttp/httpserver"
)
var
(
...
...
caddyhttp/requestid/requestid.go
View file @
3856ad03
...
...
@@ -19,8 +19,8 @@ import (
"log"
"net/http"
"github.com/google/uuid"
"github.com/caddyserver/caddy/caddyhttp/httpserver"
"github.com/google/uuid"
)
// Handler is a middleware handler
...
...
caddyhttp/websocket/websocket.go
View file @
3856ad03
...
...
@@ -29,8 +29,8 @@ import (
"strings"
"time"
"github.com/gorilla/websocket"
"github.com/caddyserver/caddy/caddyhttp/httpserver"
"github.com/gorilla/websocket"
)
const
(
...
...
caddytls/config.go
View file @
3856ad03
...
...
@@ -23,9 +23,9 @@ import (
"github.com/go-acme/lego/challenge/tlsalpn01"
"github.com/caddyserver/caddy"
"github.com/go-acme/lego/certcrypto"
"github.com/klauspost/cpuid"
"github.com/caddyserver/caddy"
"github.com/mholt/certmagic"
)
...
...
caddytls/setup_test.go
View file @
3856ad03
...
...
@@ -21,8 +21,8 @@ import (
"os"
"testing"
"github.com/go-acme/lego/certcrypto"
"github.com/caddyserver/caddy"
"github.com/go-acme/lego/certcrypto"
"github.com/mholt/certmagic"
)
...
...
caddytls/tls.go
View file @
3856ad03
...
...
@@ -29,8 +29,8 @@
package
caddytls
import
(
"github.com/go-acme/lego/challenge"
"github.com/caddyserver/caddy"
"github.com/go-acme/lego/challenge"
"github.com/mholt/certmagic"
)
...
...
onevent/hook/hook_test.go
View file @
3856ad03
...
...
@@ -7,8 +7,8 @@ import (
"testing"
"time"
"github.com/google/uuid"
"github.com/caddyserver/caddy"
"github.com/google/uuid"
)
func
TestHook
(
t
*
testing
.
T
)
{
...
...
onevent/on.go
View file @
3856ad03
...
...
@@ -3,9 +3,9 @@ package onevent
import
(
"strings"
"github.com/google/uuid"
"github.com/caddyserver/caddy"
"github.com/caddyserver/caddy/onevent/hook"
"github.com/google/uuid"
)
func
init
()
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
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 comment