Improved caddy configuration
This commit is contained in:
parent
8b5d2a8ca0
commit
031c848984
2 changed files with 13 additions and 0 deletions
|
@ -579,6 +579,15 @@ or the root domain:
|
||||||
|
|
||||||
ntfy.sh, http://nfty.sh {
|
ntfy.sh, http://nfty.sh {
|
||||||
reverse_proxy 127.0.0.1:2586
|
reverse_proxy 127.0.0.1:2586
|
||||||
|
|
||||||
|
# Redirect HTTP to HTTPS, but only for GET topic addresses, since we want
|
||||||
|
# it to work with curl without the annoying https:// prefix
|
||||||
|
@httpget {
|
||||||
|
protocol http
|
||||||
|
method GET
|
||||||
|
path_regexp ^/([-_a-z0-9]{0,64}$|docs/|static/)
|
||||||
|
}
|
||||||
|
redir @httpget https://{host}{uri}
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
|
@ -37,6 +37,10 @@ to [@Joeharrison94](https://github.com/Joeharrison94) for the input.
|
||||||
* Made web app sounds quieter ([#222](https://github.com/binwiederhier/ntfy/issues/222))
|
* Made web app sounds quieter ([#222](https://github.com/binwiederhier/ntfy/issues/222))
|
||||||
* Add "private browsing"-specific error message for Firefox/Safari ([#208](https://github.com/binwiederhier/ntfy/issues/208), thanks to [@julianfoad](https://github.com/julianfoad) for reporting)
|
* Add "private browsing"-specific error message for Firefox/Safari ([#208](https://github.com/binwiederhier/ntfy/issues/208), thanks to [@julianfoad](https://github.com/julianfoad) for reporting)
|
||||||
|
|
||||||
|
**Documentation:**
|
||||||
|
|
||||||
|
* Improved caddy configuration (no ticket, thanks to @Stnby)
|
||||||
|
|
||||||
**Additional translations:**
|
**Additional translations:**
|
||||||
|
|
||||||
* Czech (thanks to [@waclaw66](https://hosted.weblate.org/user/waclaw66/))
|
* Czech (thanks to [@waclaw66](https://hosted.weblate.org/user/waclaw66/))
|
||||||
|
|
Loading…
Reference in a new issue