From 30e50f1ac6e7a38a13d806f4d0e39cc26a816198 Mon Sep 17 00:00:00 2001 From: Jun Kurihara Date: Sat, 10 Aug 2024 20:41:05 +0900 Subject: [PATCH] fix: typo --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 221d6be..5e822da 100644 --- a/README.md +++ b/README.md @@ -104,7 +104,7 @@ Otherwise, say, a request to `other.example.com` is simply rejected with the sta If you want to host multiple and distinct domain names in a single IP address/port, simply create multiple `app.""` entries in config file like ```toml -default_application = "app1" +default_app = "app1" [apps.app1] server_name = "app1.example.com" @@ -115,7 +115,7 @@ server_name = "app2.example.org" #... ``` -Here we note that by specifying `default_application` entry, *HTTP* requests will be served by the specified application if HOST header or URL in Request line doesn't match any `server_name`s in `reverse_proxy` entries. For HTTPS requests, it will be rejected since the secure connection cannot be established for the unknown server name. +Here we note that by specifying `default_app` entry, *HTTP* requests will be served by the specified application if HOST header or URL in Request line doesn't match any `server_name`s in `reverse_proxy` entries. For HTTPS requests, it will be rejected since the secure connection cannot be established for the unknown server name. #### HTTPS to Backend Application