frankenphp/caddy/caddy_test.go

45 lines
881 B
Go
Raw Normal View History

2021-10-31 23:18:30 +00:00
package caddy_test
import (
"net/http"
"testing"
"github.com/caddyserver/caddy/v2/caddytest"
)
func TestPHP(t *testing.T) {
tester := caddytest.NewTester(t)
tester.InitServer(`
{
http_port 9080
https_port 9443
}
localhost:9080 {
route {
root * {env.PWD}/../testdata
# Add trailing slash for directory requests
@canonicalPath {
file {path}/index.php
not path */
}
redir @canonicalPath {path}/ 308
# If the requested file does not exist, try index files
@indexFiles file {
try_files {path} {path}/index.php index.php
split_path .php
}
rewrite @indexFiles {http.matchers.file.relative}
# Handle PHP files with FrankenPHP
2021-10-31 23:18:30 +00:00
@phpFiles path *.php
php @phpFiles
respond 404
}
}
`, "caddyfile")
tester.AssertGetResponse("http://localhost:9080", http.StatusOK, "I am by birth a Genevese")
}