mirror of
https://github.com/caddyserver/website.git
synced 2025-05-07 12:17:15 -04:00
Apply discussions from code review
This commit is contained in:
parent
49d3858095
commit
a25ef40798
1 changed files with 24 additions and 18 deletions
|
@ -22,14 +22,16 @@ These are not drop-in solutions; you will have to customize your domain name, po
|
||||||
```caddy
|
```caddy
|
||||||
example.com
|
example.com
|
||||||
|
|
||||||
root * /var/www # optional; default root is current directory
|
root * /var/www
|
||||||
file_server
|
file_server
|
||||||
```
|
```
|
||||||
|
|
||||||
|
As usual, the first line is the site address. The [`root` directive](/docs/caddyfile/directives/root) specifies the path to the root of the site (the `*` means to match all requests, so as to disambiguate from a [path matcher](/docs/caddyfile/matchers#path-matchers))—change the path to your site if it isn't the current working directory. Finally, we enable the [static file server](/docs/caddyfile/directives/file_server).
|
||||||
|
|
||||||
|
|
||||||
## Reverse proxy
|
## Reverse proxy
|
||||||
|
|
||||||
All requests:
|
Proxy all requests:
|
||||||
|
|
||||||
```caddy
|
```caddy
|
||||||
example.com
|
example.com
|
||||||
|
@ -37,13 +39,13 @@ example.com
|
||||||
reverse_proxy localhost:5000
|
reverse_proxy localhost:5000
|
||||||
```
|
```
|
||||||
|
|
||||||
Just requests having a path starting with `/api/`; static files for everything else:
|
Only proxy requests having a path starting with `/api/` and serve static files for everything else:
|
||||||
|
|
||||||
```caddy
|
```caddy
|
||||||
example.com
|
example.com
|
||||||
|
|
||||||
|
root * /var/www
|
||||||
reverse_proxy /api/* localhost:5000
|
reverse_proxy /api/* localhost:5000
|
||||||
root * /var/www # optional; default root is current directory
|
|
||||||
file_server
|
file_server
|
||||||
```
|
```
|
||||||
|
|
||||||
|
@ -55,19 +57,16 @@ With a PHP FastCGI service running, something like this works for most modern PH
|
||||||
```caddy
|
```caddy
|
||||||
example.com
|
example.com
|
||||||
|
|
||||||
php_fastcgi unix//run/php/php-fpm.sock
|
root * /var/www
|
||||||
```
|
|
||||||
|
|
||||||
If your PHP site relies on static files too, you may need to enable a static file server (but this depends on your PHP app):
|
|
||||||
|
|
||||||
```caddy
|
|
||||||
example.com
|
|
||||||
|
|
||||||
php_fastcgi /blog/* localhost:9000
|
php_fastcgi /blog/* localhost:9000
|
||||||
root * /var/www # optional; default root is current directory
|
|
||||||
file_server
|
file_server
|
||||||
```
|
```
|
||||||
|
|
||||||
|
Customize the site root and path matcher accordingly; this example assumes PHP is only in the `/blog/` subdirectory—all other requests will be served as static files.
|
||||||
|
|
||||||
|
The [`php_fastcgi` directive](/docs/caddyfile/directives/php_fastcgi) is actually just a shortcut for [several pieces of configuration](/docs/caddyfile/directives/php_fastcgi#expanded-form).
|
||||||
|
|
||||||
|
|
||||||
## Redirect `www.` subdomain
|
## Redirect `www.` subdomain
|
||||||
|
|
||||||
To **add** the `www.` subdomain with an HTTP redirect:
|
To **add** the `www.` subdomain with an HTTP redirect:
|
||||||
|
@ -78,7 +77,6 @@ example.com {
|
||||||
}
|
}
|
||||||
|
|
||||||
www.example.com {
|
www.example.com {
|
||||||
...
|
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
@ -91,7 +89,6 @@ www.example.com {
|
||||||
}
|
}
|
||||||
|
|
||||||
example.com {
|
example.com {
|
||||||
...
|
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
@ -100,9 +97,11 @@ example.com {
|
||||||
|
|
||||||
You will not usually need to configure this yourself; the [`file_server` directive](/docs/caddyfile/directives/file_server) will automatically add or remove trailing slashes from requests by way of HTTP redirects, depending on whether the requested resource is a directory or file, respectively.
|
You will not usually need to configure this yourself; the [`file_server` directive](/docs/caddyfile/directives/file_server) will automatically add or remove trailing slashes from requests by way of HTTP redirects, depending on whether the requested resource is a directory or file, respectively.
|
||||||
|
|
||||||
HTTP redirects are external, but you can internally [`rewrite`](/docs/caddyfile/directives/rewrite) add the slash if you want both URIs to be used for the same resource.
|
However, if you need to, you can still enforce trailing slashes with your config. There are two ways to do it: internally or externally.
|
||||||
|
|
||||||
To add or remove a trailing slash:
|
### Internal enforcement
|
||||||
|
|
||||||
|
This uses the [`rewrite`](/docs/caddyfile/directives/rewrite) directive. Caddy will rewrite the URI internally to add or remove the trailing slash:
|
||||||
|
|
||||||
```caddy
|
```caddy
|
||||||
example.com
|
example.com
|
||||||
|
@ -111,7 +110,12 @@ rewrite /add /add/
|
||||||
rewrite /remove/ /remove
|
rewrite /remove/ /remove
|
||||||
```
|
```
|
||||||
|
|
||||||
To perform the equivalent change externally (with a redirect), simply replaces `rewrite` with [`redir`](/docs/caddyfile/directives/redir):
|
Using a rewrite, requests with and without the trailing slash will be the same.
|
||||||
|
|
||||||
|
|
||||||
|
### External enforcement
|
||||||
|
|
||||||
|
This uses the [`redir`](/docs/caddyfile/directives/redir) directive. Caddy will ask the browser to change the URI to add or remove the trailing slash:
|
||||||
|
|
||||||
```caddy
|
```caddy
|
||||||
example.com
|
example.com
|
||||||
|
@ -119,3 +123,5 @@ example.com
|
||||||
redir /add /add/
|
redir /add /add/
|
||||||
redir /remove/ /remove
|
redir /remove/ /remove
|
||||||
```
|
```
|
||||||
|
|
||||||
|
Using a redirect, the client will have to re-issue the request, enforcing a single acceptable URI for a resource.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue