diff options
author | 2022-07-08 02:01:00 -0600 | |
---|---|---|
committer | 2022-07-08 09:01:00 +0100 | |
commit | a6528fe5760bbff3b3d4682008d55ee1d983eec9 (patch) | |
tree | 0d568f0ace949167239daee0d0a6ad628f601886 /docs/installation_guide/caddy.md | |
parent | [bugfix] Allow instance titles to wrap (#695) (diff) | |
download | gotosocial-a6528fe5760bbff3b3d4682008d55ee1d983eec9.tar.xz |
[bugfix] Various fixes (#699)
* [bugfix] Correctly style inputs and buttons
<input>, <textarea>, and <button> were incorrectly using the system-ui font previously; this commit fixes that. text-align: center; was added to <button> due to an inconsistency with .button where text-align would be off.
* [chore] Update binary installation instructions
This commit updates the example release mentioned in the docs, and mentions Caddy in the reverse proxy options.
* [bugfix] Remove redundant Caddyfile
Caddy automatically upgrades HTTP to HTTPS (see https://caddyserver.com/docs/automatic-https) so the upgrading part of the Caddyfile is redundant.
Diffstat (limited to 'docs/installation_guide/caddy.md')
-rw-r--r-- | docs/installation_guide/caddy.md | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/docs/installation_guide/caddy.md b/docs/installation_guide/caddy.md index c1dd13977..0b1e91668 100644 --- a/docs/installation_guide/caddy.md +++ b/docs/installation_guide/caddy.md @@ -65,13 +65,7 @@ While editing the file above, you should replace 'example.org' with your domain. The file you're about to create should look like this: ```Caddyfile -# Because we use a reverse proxy, Caddy won't redirect port 80 to 443 by default unless we tell it to. -example.org:80 { - redir https://example.org/{uri} -} - -# The actual host configuration -example.org:443 { +example.org { # Optional, but recommended, compress the traffic using proper protocols encode zstd gzip |