summaryrefslogtreecommitdiff
path: root/caddyconfig/httpcaddyfile/directives.go
diff options
context:
space:
mode:
authorMatthew Holt <mholt@users.noreply.github.com>2019-09-11 12:02:35 -0600
committerMatthew Holt <mholt@users.noreply.github.com>2019-09-11 12:02:35 -0600
commite48d83452e42a6eb53f02213dd5981d02627b7b2 (patch)
treeb57f5f0a34aa39e434a8e24e12c43f89071a9841 /caddyconfig/httpcaddyfile/directives.go
parent2459c292a4d6fb0552eb9be3cecd955093ed853b (diff)
httpcaddyfile: Switch order; reverse_proxy comes before php_fastcgi
Diffstat (limited to 'caddyconfig/httpcaddyfile/directives.go')
-rw-r--r--caddyconfig/httpcaddyfile/directives.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/caddyconfig/httpcaddyfile/directives.go b/caddyconfig/httpcaddyfile/directives.go
index 31029c6..573db8d 100644
--- a/caddyconfig/httpcaddyfile/directives.go
+++ b/caddyconfig/httpcaddyfile/directives.go
@@ -34,8 +34,8 @@ var defaultDirectiveOrder = []string{
"templates",
"redir",
"static_response", // TODO: "reply" or "respond"?
- "php_fastcgi",
"reverse_proxy",
+ "php_fastcgi",
"file_server",
}