update doc
This commit is contained in:
parent
c781af11a5
commit
4c7a20f2c5
8 changed files with 136 additions and 0 deletions
|
@ -11,6 +11,39 @@ Forgejo, a community managed lightweight code hosting solution.
|
||||||
|
|
||||||
[For more informations](https://forgejo.org/)
|
[For more informations](https://forgejo.org/)
|
||||||
|
|
||||||
|
## Examples
|
||||||
|
|
||||||
|
Zone names are provided as examples. Think about adapting with the value of provider_zone in configuration file.
|
||||||
|
|
||||||
|
With minimum providers:
|
||||||
|
|
||||||
|
```
|
||||||
|
forgejo:
|
||||||
|
applicationservice: forgejo
|
||||||
|
zones_name:
|
||||||
|
- localdns
|
||||||
|
- reverseproxy
|
||||||
|
- smtp
|
||||||
|
- redis
|
||||||
|
- oauth2
|
||||||
|
- postgresql
|
||||||
|
```
|
||||||
|
|
||||||
|
With all providers:
|
||||||
|
|
||||||
|
```
|
||||||
|
forgejo:
|
||||||
|
applicationservice: forgejo
|
||||||
|
zones_name:
|
||||||
|
- journald
|
||||||
|
- localdns
|
||||||
|
- reverseproxy
|
||||||
|
- smtp
|
||||||
|
- redis
|
||||||
|
- oauth2
|
||||||
|
- postgresql
|
||||||
|
```
|
||||||
|
|
||||||
## Dependances
|
## Dependances
|
||||||
|
|
||||||
- [base-fedora-38](../base-fedora-38/README.md)
|
- [base-fedora-38](../base-fedora-38/README.md)
|
||||||
|
|
|
@ -8,3 +8,4 @@ depends:
|
||||||
- relay-mail-client
|
- relay-mail-client
|
||||||
- redis-client
|
- redis-client
|
||||||
- oauth2-client
|
- oauth2-client
|
||||||
|
service: true
|
||||||
|
|
|
@ -11,6 +11,32 @@ NSD, an authoritative DNS name server for local resolution.
|
||||||
|
|
||||||
[For more informations](https://www.nlnetlabs.nl/projects/nsd/about/)
|
[For more informations](https://www.nlnetlabs.nl/projects/nsd/about/)
|
||||||
|
|
||||||
|
## Examples
|
||||||
|
|
||||||
|
Zone names are provided as examples. Think about adapting with the value of provider_zone in configuration file.
|
||||||
|
|
||||||
|
With minimum providers:
|
||||||
|
|
||||||
|
```
|
||||||
|
nsd-local:
|
||||||
|
applicationservice: nsd-local
|
||||||
|
provider_zone: localdns
|
||||||
|
zones_name:
|
||||||
|
- localdns
|
||||||
|
```
|
||||||
|
|
||||||
|
With all providers:
|
||||||
|
|
||||||
|
```
|
||||||
|
nsd-local:
|
||||||
|
applicationservice: nsd-local
|
||||||
|
provider_zone: localdns
|
||||||
|
zones_name:
|
||||||
|
- journald
|
||||||
|
- externaldns
|
||||||
|
- localdns
|
||||||
|
```
|
||||||
|
|
||||||
## Dependances
|
## Dependances
|
||||||
|
|
||||||
- [nsd](../nsd/README.md)
|
- [nsd](../nsd/README.md)
|
||||||
|
|
|
@ -4,3 +4,4 @@ website: https://www.nlnetlabs.nl/projects/nsd/about/
|
||||||
service: true
|
service: true
|
||||||
depends:
|
depends:
|
||||||
- nsd
|
- nsd
|
||||||
|
service: true
|
||||||
|
|
|
@ -11,6 +11,29 @@ NSD, an authoritative DNS name server.
|
||||||
|
|
||||||
[For more informations](https://www.nlnetlabs.nl/projects/nsd/about/)
|
[For more informations](https://www.nlnetlabs.nl/projects/nsd/about/)
|
||||||
|
|
||||||
|
## Examples
|
||||||
|
|
||||||
|
Zone names are provided as examples. Think about adapting with the value of provider_zone in configuration file.
|
||||||
|
|
||||||
|
With minimum providers:
|
||||||
|
|
||||||
|
```
|
||||||
|
nsd:
|
||||||
|
applicationservice: nsd
|
||||||
|
zones_name:
|
||||||
|
- localdns
|
||||||
|
```
|
||||||
|
|
||||||
|
With all providers:
|
||||||
|
|
||||||
|
```
|
||||||
|
nsd:
|
||||||
|
applicationservice: nsd
|
||||||
|
zones_name:
|
||||||
|
- journald
|
||||||
|
- localdns
|
||||||
|
```
|
||||||
|
|
||||||
## Dependances
|
## Dependances
|
||||||
|
|
||||||
- [base-fedora-37](../base-fedora-37/README.md)
|
- [base-fedora-37](../base-fedora-37/README.md)
|
||||||
|
|
|
@ -11,6 +11,31 @@ Postgresql, a database.
|
||||||
|
|
||||||
[For more informations](https://www.postgresql.org)
|
[For more informations](https://www.postgresql.org)
|
||||||
|
|
||||||
|
## Examples
|
||||||
|
|
||||||
|
Zone names are provided as examples. Think about adapting with the value of provider_zone in configuration file.
|
||||||
|
|
||||||
|
With minimum providers:
|
||||||
|
|
||||||
|
```
|
||||||
|
postgresql:
|
||||||
|
applicationservice: postgresql
|
||||||
|
provider_zone: postgresql
|
||||||
|
zones_name:
|
||||||
|
- localdns
|
||||||
|
```
|
||||||
|
|
||||||
|
With all providers:
|
||||||
|
|
||||||
|
```
|
||||||
|
postgresql:
|
||||||
|
applicationservice: postgresql
|
||||||
|
provider_zone: postgresql
|
||||||
|
zones_name:
|
||||||
|
- journald
|
||||||
|
- localdns
|
||||||
|
```
|
||||||
|
|
||||||
## Dependances
|
## Dependances
|
||||||
|
|
||||||
- [base-fedora-37](../base-fedora-37/README.md)
|
- [base-fedora-37](../base-fedora-37/README.md)
|
||||||
|
|
|
@ -3,3 +3,4 @@ description: Postgresql, a database
|
||||||
website: https://www.postgresql.org
|
website: https://www.postgresql.org
|
||||||
depends:
|
depends:
|
||||||
- base-fedora-37
|
- base-fedora-37
|
||||||
|
service: true
|
||||||
|
|
|
@ -11,6 +11,32 @@ Unbound, a validating, recursive, caching DNS resolver.
|
||||||
|
|
||||||
[For more informations](https://www.nlnetlabs.nl/projects/unbound/about/)
|
[For more informations](https://www.nlnetlabs.nl/projects/unbound/about/)
|
||||||
|
|
||||||
|
## Examples
|
||||||
|
|
||||||
|
Zone names are provided as examples. Think about adapting with the value of provider_zone in configuration file.
|
||||||
|
|
||||||
|
With minimum providers:
|
||||||
|
|
||||||
|
```
|
||||||
|
unbound:
|
||||||
|
applicationservice: unbound
|
||||||
|
provider_zone: externaldns
|
||||||
|
zones_name:
|
||||||
|
- localdns
|
||||||
|
```
|
||||||
|
|
||||||
|
With all providers:
|
||||||
|
|
||||||
|
```
|
||||||
|
unbound:
|
||||||
|
applicationservice: unbound
|
||||||
|
provider_zone: externaldns
|
||||||
|
zones_name:
|
||||||
|
- journald
|
||||||
|
- externaldns
|
||||||
|
- localdns
|
||||||
|
```
|
||||||
|
|
||||||
## Dependances
|
## Dependances
|
||||||
|
|
||||||
- [dns-external](../dns-external/README.md)
|
- [dns-external](../dns-external/README.md)
|
||||||
|
|
Loading…
Reference in a new issue