mirror of
https://github.com/hassio-addons/repository-edge.git
synced 2025-05-04 19:21:26 +00:00
⬆️ Updating add-on Nginx Proxy Manager to ee3e27e
This commit is contained in:
parent
355afc2ea5
commit
487f7a2807
5 changed files with 12 additions and 43 deletions
|
@ -830,10 +830,10 @@ SOFTWARE.
|
|||
[nut-armhf-shield]: https://img.shields.io/badge/armhf-no-red.svg
|
||||
[nut-armv7-shield]: https://img.shields.io/badge/armv7-yes-green.svg
|
||||
[nut-i386-shield]: https://img.shields.io/badge/i386-no-red.svg
|
||||
[addon-nginxproxymanager]: https://github.com/hassio-addons/addon-nginx-proxy-manager/tree/cba7bc5
|
||||
[addon-doc-nginxproxymanager]: https://github.com/hassio-addons/addon-nginx-proxy-manager/blob/cba7bc5/README.md
|
||||
[addon-nginxproxymanager]: https://github.com/hassio-addons/addon-nginx-proxy-manager/tree/ee3e27e
|
||||
[addon-doc-nginxproxymanager]: https://github.com/hassio-addons/addon-nginx-proxy-manager/blob/ee3e27e/README.md
|
||||
[nginxproxymanager-issue]: https://github.com/hassio-addons/addon-nginx-proxy-manager/issues
|
||||
[nginxproxymanager-version-shield]: https://img.shields.io/badge/version-cba7bc5-blue.svg
|
||||
[nginxproxymanager-version-shield]: https://img.shields.io/badge/version-ee3e27e-blue.svg
|
||||
[nginxproxymanager-aarch64-shield]: https://img.shields.io/badge/aarch64-yes-green.svg
|
||||
[nginxproxymanager-amd64-shield]: https://img.shields.io/badge/amd64-yes-green.svg
|
||||
[nginxproxymanager-armhf-shield]: https://img.shields.io/badge/armhf-no-red.svg
|
||||
|
|
|
@ -1,4 +1,5 @@
|
|||
# Changelog since v0.12.3
|
||||
- Update documentation for upcoming release (#506)
|
||||
- Ensure persistent letsencrypt folder exists
|
||||
- Fix letsencrypt dirs
|
||||
- Fix stream module patch
|
||||
|
|
|
@ -29,45 +29,13 @@ comparison to installing any other Home Assistant add-on.
|
|||
1. Check the logs of the "Nginx Proxy Manager" add-on to see if everything went well.
|
||||
1. Click the "OPEN WEB UI" button and login using:
|
||||
`admin@example.com` / `changeme`
|
||||
1. Forward port `80` and `443` from your router to your Home Assistant machine.
|
||||
1. Forward port `443` (and optionally `80`) from your router to your
|
||||
Home Assistant machine.
|
||||
1. Enjoy the add-on!
|
||||
|
||||
## Configuration
|
||||
|
||||
**Note**: _Remember to restart the add-on when the configuration is changed._
|
||||
|
||||
Example add-on configuration:
|
||||
|
||||
```yaml
|
||||
log_level: info
|
||||
```
|
||||
|
||||
**Note**: _This is just an example, don't copy and paste it! Create your own!_
|
||||
|
||||
### Option: `log_level`
|
||||
|
||||
The `log_level` option controls the level of log output by the addon and can
|
||||
be changed to be more or less verbose, which might be useful when you are
|
||||
dealing with an unknown issue. Possible values are:
|
||||
|
||||
- `trace`: Show every detail, like all called internal functions.
|
||||
- `debug`: Shows detailed debug information.
|
||||
- `info`: Normal (usually) interesting events.
|
||||
- `warning`: Exceptional occurrences that are not errors.
|
||||
- `error`: Runtime errors that do not require immediate action.
|
||||
- `fatal`: Something went terribly wrong. Add-on becomes unusable.
|
||||
|
||||
Please note that each level automatically includes log messages from a
|
||||
more severe level, e.g., `debug` also shows `info` messages. By default,
|
||||
the `log_level` is set to `info`, which is the recommended setting unless
|
||||
you are troubleshooting.
|
||||
|
||||
## Known issues and limitations
|
||||
|
||||
- The original NGinx Proxy Manager has support for forwarding TCP/UDP streams,
|
||||
which is removed from this add-on. It makes no sense from a
|
||||
Home Assistant / Home perspective and, by removing it, it also
|
||||
removed the need for this add-on to run on the Docker host network.
|
||||
This add-on does not provide any configuration.
|
||||
|
||||
## Changelog & Releases
|
||||
|
||||
|
@ -108,7 +76,7 @@ check [the contributor's page][contributors].
|
|||
|
||||
MIT License
|
||||
|
||||
Copyright (c) 2019-2023 Franck Nijhof
|
||||
Copyright (c) 2019-2024 Franck Nijhof
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
|
|
|
@ -53,10 +53,10 @@ If you are more interested in stable releases of our add-ons:
|
|||
[forum]: https://community.home-assistant.io/t/home-assistant-community-add-on-nginx-proxy-manager/111830?u=frenck
|
||||
[github-sponsors-shield]: https://frenck.dev/wp-content/uploads/2019/12/github_sponsor.png
|
||||
[github-sponsors]: https://github.com/sponsors/frenck
|
||||
[maintenance-shield]: https://img.shields.io/maintenance/yes/2023.svg
|
||||
[maintenance-shield]: https://img.shields.io/maintenance/yes/2024.svg
|
||||
[patreon-shield]: https://frenck.dev/wp-content/uploads/2019/12/patreon.png
|
||||
[patreon]: https://www.patreon.com/frenck
|
||||
[project-stage-shield]: https://img.shields.io/badge/project%20stage-experimental-yellow.svg
|
||||
[release-shield]: https://img.shields.io/badge/version-cba7bc5-blue.svg
|
||||
[release]: https://github.com/hassio-addons/addon-nginx-proxy-manager/tree/cba7bc5
|
||||
[release-shield]: https://img.shields.io/badge/version-ee3e27e-blue.svg
|
||||
[release]: https://github.com/hassio-addons/addon-nginx-proxy-manager/tree/ee3e27e
|
||||
[screenshot]: https://github.com/hassio-addons/addon-nginx-proxy-manager/raw/main/images/screenshot.gif
|
|
@ -1,5 +1,5 @@
|
|||
name: Nginx Proxy Manager
|
||||
version: cba7bc5
|
||||
version: ee3e27e
|
||||
slug: nginxproxymanager
|
||||
description: Manage Nginx proxy hosts with a simple, powerful interface
|
||||
url: https://github.com/hassio-addons/addon-nginx-proxy-manager
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue